Visual Studio Editor in the Visual Studio 2010 and .NET Framework 4.0 CTP announcement
-
Link
Hi,
my name is Selma Ikiz and I am a PM for the New Code Editor in Visual Studio.
We have devised a set of walkthroughs for you in this Visual Studio 10 release. Please use the walkthroughs as a hand-held guide to use this release. Given that this is the first release of Code Editor in Visual Studio, we are excited to hear your feedback.
You can use the Connect website to report bugs.
This forum will cover the Code Editor Walkthroughs:
How to Use a Shell Command to Add a Comment Adornment in the Visual Studio 2010 Editor
You can implement features in the Visual Studio 2010 editor from a typical VSPackage. This walkthrough shows how to add a comment adornment to a text view in the Visual Studio 2010 editor by invoking a Visual Studio shell command.
How to Add Syntax Coloring in the Visual Studio 2010 Editor
You can add many different visual effects to the Visual Studio 2010 editor by creating Managed Extensions Framework (MEF) components. This walkthrough shows how to add syntax coloring.
How to Highlight Text in the Visual Studio 2010 Editor
You can add many different visual effects to the Visual Studio 2010 editor by creating Managed Extensibility Framework (MEF) components. This walkthrough shows how to highlight every occurrence of a string in a text file at the same time. For example, if a word occurs more than one time in a text file, and you position the cursor in one occurrence, every occurrence is highlighted.
How to Provide IntelliSense in the Visual Studio 2010 Editor
You can implement IntelliSense in the Visual Studio 2010 editor by creating a Managed Extensibility Framework (MEF) component.
This walkthrough shows how to implement two IntelliSense controllers, one for method signature descriptions and one for statement completion. IntelliSense controllers are responsible for listening to the events that trigger completion, displaying the appropriate list, and removing the display when it is committed (that is, when a selection has been made) or dismissed. This walkthrough also shows how to implement IntelliSense controller providers, which create the IntelliSense controllers for individual text views.
When you run the sample code, pressing CTRL+J or "." shows the list of methods; you can dismiss the list by pressing ESC. Pressing CTRL+SHIFT+SPACEBAR or "(" shows the list of parameters; you can dismiss the list by pressing ESC. The displayed lists of methods and parameters are static lists that are defined in the Helpers class.
How to Adapt to the Visual Studio 2010 Editor
The Visual Studio 2010 editor offers many features that you can use from your existing code components. These instructions show how to consume editor services directly from a Managed Extensibility Framework (MEF) component or a non-MEF component, for example a VSPackage. It also shows how to use adapters, or shims, to get the services of the Visual Studio 2010 editor in both managed and unmanaged code.
If you have not downloaded or would like more information about the CTP, please visit http://go.microsoft.com/fwlink/?LinkId=129231.
You can find the walkthroughs on the VPC disk: C:\users\Public\documents\CTPWalkthroughs\Visual Studio.Thanks!
Selma Ikiz
Code Editor PM
-
0 VotesEdit and Continue, save me from this horror!
In the old days vs would work normally, like any other compiler: 1. Run code. 2. Find an error in running code. 3. Fix the error. 4. You would ...Discussion | 1 Replies | 34420 Views | Created by Wouter Vos - Tuesday, February 23, 2010 1:13 PM | Last reply by Sulieman.Mansouri - Wednesday, February 24, 2010 10:03 AM -
0 VotesCall Hierarchy absence [VB 2010]
I have two Subs and call second Sub from first Sub. I hover mouse over sub name and make right-click. In the bottom "Call Hierarchy" window appears, but it's empty. ... -
0 VotesHow can I Enable the Document Map Margin (rockscroll-like feature) in VS2010
Options -> Text Editor, then all of Tools -> Options and View -> Other Windows without success. Thanks Joseph CooneyUnanswered | 0 Replies | 13290 Views | Created by JosephCooney - Wednesday, November 11, 2009 9:08 PM -
0 VotesOnly Rename the class name between class and {...}
I change the name property of one class and find out that only the class name between class and { has changed. Why not ask me if the filename (*.cpp and *.h) should be changed ... -
0 VotesTrying to create a work item on TFS 2010 Beta 2 fails with unsupported value in the Assigned To and Crreated By fields (TF20015) error.
We went through number of issues trying to create a project all related to the creation of the SharePoint portal. By manually setting accounts and permissions we managed to go through this step, and ...Unanswered | 0 Replies | 11359 Views | Created by Gideon Schaller - Sunday, November 1, 2009 10:44 PM -
0 VotesFORUM LOCKED: Please use the Visual Studio 2010 & .NET Framework 4 Beta 1 Forums
Thank you for visiting Visual Studio 2010 .Net 4 CTP forums. Since the Beta1 is now available we are closing down the CTP forums and encourage you to visit the new Visual Studio 2010 ... -
0 VotesDisable ClearType
VS 2010 Beta 1 have cleartype active in all code editors (html, cs, vb). Cleartype makes the code editor blurry and difficult for read. I cannot find the option for disable the cleartype in the VS ...Unanswered | 0 Replies | 14095 Views | Created by Salva - From Spain - Wednesday, May 20, 2009 3:47 PM -
2 VotesVisual Studio SDK and Visual Studio 2010
Hi all! with the pretty ready release of Visual Studio 2010 Beta I asked myself how Visual Studio SDK and Visual Studio Extensibility will approach with the new ...Answered | 2 Replies | 16411 Views | Created by Matteo Garzulino - Tuesday, May 19, 2009 8:15 AM | Last reply by Matteo Garzulino - Wednesday, May 20, 2009 7:40 AM -
0 VotesBeta 1 - side-by-side
Does VS 2010 beta 1 run side-by-side with VS 2008? Will the VS 2010 beta 1 support uninstalling? Is it safe to install this on my development machine or should I just run this in a VPC?MVP ...Answered | 1 Replies | 12403 Views | Created by Wally McClure - Monday, May 18, 2009 5:57 PM | Last reply by Brittany Behrens - Tuesday, May 19, 2009 10:00 PM -
0 VotesVS.Net 2010 IDE Very Slow
On my Intel Core 2 Duo machine running MS Windows XP Pro, 3GB RAM the VS.Net 2010 IDE is very slow, it takes along time to start up and also create a new project freezing along the ...Discussion | 4 Replies | 21087 Views | Created by Lennie De Villiers DG - Monday, December 29, 2008 8:56 AM | Last reply by Brittany Behrens - Tuesday, May 19, 2009 12:32 AM -
0 VotesComments in bookmark
Hi, I've an issue about vs. It's possible to have a feature by which record a to do list of activities to be do in the code or a pop-up of comments inserted in the code to make a ...Answered | 1 Replies | 12574 Views | Created by AlbertoC - Thursday, April 16, 2009 8:47 AM | Last reply by Brittany Behrens - Tuesday, May 19, 2009 12:28 AM -
1 VotesHow to Add Syntax Coloring in the Visual Studio 2010 Editor
Hi, my name is Selma Ikiz and I am a PM for the New Code Editor in Visual Studio. We have created a set of walkthroughs for the ...Discussion | 3 Replies | 27654 Views | Created by Selma Ikiz - MSFT - Sunday, October 26, 2008 10:41 PM | Last reply by Shimmy Weitzhandler - Tuesday, May 19, 2009 12:18 AM -
0 VotesHow to Adapt to the Visual Studio 2010 Editor
Hi, my name is Selma Ikiz and I am a PM for the New Code Editor in Visual Studio. We have created a set of walkthroughs for the Visual ...Discussion | 4 Replies | 17063 Views | Created by Selma Ikiz - MSFT - Sunday, October 26, 2008 10:53 PM | Last reply by Brittany Behrens - Tuesday, May 19, 2009 12:04 AM -
0 VotesVS2008 Add Service Reference Issue
Hi I am using VSTS 2008 SP1, created an Service using WCF 3.0 with one custom falut exception. When I have created a proxy uisnh VS feature, Add Service Reference, it has ...Unanswered | 1 Replies | 12542 Views | Created by ShailendraSute - Monday, November 17, 2008 6:11 AM | Last reply by jyotim - Monday, May 11, 2009 12:08 PM -
1 VotesExperimental Hive Support
In the new version of Visual Studio, if I only use MEF support for my extensions, is there a way to disable my component in a debug environment? (IE, one debugging VS with no component, one debugee VS ...Discussion | 2 Replies | 13838 Views | Created by Joaquin Jares - Monday, January 12, 2009 6:04 PM | Last reply by hypersw - Thursday, April 30, 2009 11:06 PM -
0 VotesWould like to put pictures or images in Visual Studio Editor.
Any plans to allow a picture to be inline with your source code? Imagine being able to put a diagram or a hierarcy chart in the comments above a function.Leo Violette - Software ... -
0 VotesAre there any plans for an ink analyzer for code languages?
I bought a tablet input panel for my Vista desktop hoping to use it to write code, unfortunately the analyzers are designed for verbal languages and don't work well with code languages. So I was ... -
0 VotesIDE Extension samples
Sorry to interrupt but can anyone point me to where I can find Visual Studio 2010 IDE Extension downloadable samples? Bigsby, Lisboa, Portugal - O que for, quando for, é que será o que é.Answered | 1 Replies | 12760 Views | Created by Bigsby - Monday, February 16, 2009 12:30 PM | Last reply by Brittany Behrens - Wednesday, February 25, 2009 1:59 AM -
0 VotesForce partial class to be in branch of main class
If create a partial class of, for example Class1, and I name the new file Class1.Designer, then the solution explore automatically draws the Class1.Designer in a branch of the solution tree, ...Unanswered | 1 Replies | 12468 Views | Created by Guillermo.Marraco - Tuesday, January 27, 2009 7:02 PM | Last reply by Guillermo.Marraco - Tuesday, January 27, 2009 7:05 PM -
1 VotesCtrl+Enter on block doesn't indent caret on new line
Don't know how many people use this feature, but I've gotten into the habit of using it frequently when writing a new method. After setting the ending brace on a block, I'll press Ctrl+Enter, ...Discussion | 2 Replies | 13297 Views | Created by Joe Mayo - Thursday, January 15, 2009 5:48 PM | Last reply by Joe Mayo - Friday, January 16, 2009 3:08 AM - Items 1 to 20 of 47 Next ›
Visual Studio Editor in the Visual Studio 2010 and .NET Framework 4.0 CTP announcement
-
Link
Hi,
my name is Selma Ikiz and I am a PM for the New Code Editor in Visual Studio.
We have devised a set of walkthroughs for you in this Visual Studio 10 release. Please use the walkthroughs as a hand-held guide to use this release. Given that this is the first release of Code Editor in Visual Studio, we are excited to hear your feedback.
You can use the Connect website to report bugs.
This forum will cover the Code Editor Walkthroughs:
How to Use a Shell Command to Add a Comment Adornment in the Visual Studio 2010 Editor
You can implement features in the Visual Studio 2010 editor from a typical VSPackage. This walkthrough shows how to add a comment adornment to a text view in the Visual Studio 2010 editor by invoking a Visual Studio shell command.
How to Add Syntax Coloring in the Visual Studio 2010 Editor
You can add many different visual effects to the Visual Studio 2010 editor by creating Managed Extensions Framework (MEF) components. This walkthrough shows how to add syntax coloring.
How to Highlight Text in the Visual Studio 2010 Editor
You can add many different visual effects to the Visual Studio 2010 editor by creating Managed Extensibility Framework (MEF) components. This walkthrough shows how to highlight every occurrence of a string in a text file at the same time. For example, if a word occurs more than one time in a text file, and you position the cursor in one occurrence, every occurrence is highlighted.
How to Provide IntelliSense in the Visual Studio 2010 Editor
You can implement IntelliSense in the Visual Studio 2010 editor by creating a Managed Extensibility Framework (MEF) component.
This walkthrough shows how to implement two IntelliSense controllers, one for method signature descriptions and one for statement completion. IntelliSense controllers are responsible for listening to the events that trigger completion, displaying the appropriate list, and removing the display when it is committed (that is, when a selection has been made) or dismissed. This walkthrough also shows how to implement IntelliSense controller providers, which create the IntelliSense controllers for individual text views.
When you run the sample code, pressing CTRL+J or "." shows the list of methods; you can dismiss the list by pressing ESC. Pressing CTRL+SHIFT+SPACEBAR or "(" shows the list of parameters; you can dismiss the list by pressing ESC. The displayed lists of methods and parameters are static lists that are defined in the Helpers class.
How to Adapt to the Visual Studio 2010 Editor
The Visual Studio 2010 editor offers many features that you can use from your existing code components. These instructions show how to consume editor services directly from a Managed Extensibility Framework (MEF) component or a non-MEF component, for example a VSPackage. It also shows how to use adapters, or shims, to get the services of the Visual Studio 2010 editor in both managed and unmanaged code.
If you have not downloaded or would like more information about the CTP, please visit http://go.microsoft.com/fwlink/?LinkId=129231.
You can find the walkthroughs on the VPC disk: C:\users\Public\documents\CTPWalkthroughs\Visual Studio.Thanks!
Selma Ikiz
Code Editor PM
