Tagged Questions
The languageservice tag has no wiki summary.
35
votes
4answers
1k views
How to create a new language for use in Visual Studio
I want to write a new templating language, and I want Visual Studio to "support" it. What I need to know is:
How do I parse my new language?
Given some code in my new template language, how do I ...
7
votes
1answer
1k views
Visual Studio 2010 Extensibility, MPF and language services
I am trying to extend Visual Studio 2010 RC to be able to use a custom programming language.
The first two things I've tried to do is a syntax highlight/Intellisense feature (easily done, thanks to ...
4
votes
1answer
539 views
How to create a VS2010 extension that uses Language Services
Creating extensions got much easier with Vs2010, but this seems not to be the case for everything...
My aim: I wnat to make method calls and property uses of STATIC classes ITALIC. (Just like Eclipse ...
3
votes
1answer
288 views
Integrate language service (MPF) and editor extension (MEF)
Does anybody the correct way to integrate a languageService (MPF) with an editor extension (MEF) in Visual Studio 2010.
Where to implement the member completion, syntax highlight, quick info, etc.?
...
3
votes
1answer
209 views
Visual Studio 2008 & Override LanguageService for Existing File Extension
I write simple LanguageService for JavaScript language. Target IDE is Visual Studio 2008.
I want to run my LanguageService for .js extension file(default extension for JavaScript language). But for ...
1
vote
2answers
95 views
Visual Studio 2008: Why Doesn't my Language Service Add-In Work? (“Sorry, parsing could not recover”)
I'm trying to create my own language service in Visual Studio 2008 SP1, but when I run the program (which starts the Visual Studio Experimental Hive) and try to open a source file, I get this error:
...
1
vote
1answer
274 views
Implementing a Language Service By Using the Managed Package Framework
I've followed the steps listed in the walk through (http://msdn.microsoft.com/en-us/library/bb166360.aspx) for implementing and registering a LanguageService and I simply can't get it to work.
My ...
1
vote
2answers
308 views
Installing a Custom Visual Studio Language Service
I've written a new Visual Studio language service for my software studio's internal scripting language following the directions from a very useful article Writing Your First Visual Studio Language ...
0
votes
1answer
15 views
Duplicate of first entry in navigation bar in custom Visual Studio Language Service
I'm implementing a Visual Studio Language Service for a custom scripting language used internally at my company, and I've run into an issue with the navigation bar implemented as a subclass of ...
0
votes
1answer
197 views
How to determine the ProjectItem language type without opening the document in vsx?
When a file is open in the visual studio editor, through the EnvDTE.Document.Language property a string result such as "CSharp", "C/C++", "HTML", "JScript", etc. is returned specifying the language of ...
0
votes
1answer
97 views
Getting an IVsTextLines from file path
I've written a basic LanguageService extension for Visual Studio 2008 for my studio's proprietary scripting language. It works perfectly fine, and I've implemented a basic symbol table to keep track ...