Visual Studio 2008 & Override LanguageService for existing file extension

I am writing a simple LanguageService for JavaScript. The target IDE is Visual Studio 2008. I want to run the LanguageService extension file for .js (the default extension for JavaScript). But for this extension, my LanguageService is not working. When I run my LanguageService for the .jsp extension (there can be any extension that does not support the VS IDE) - LanguageService works well.

My question is: how to override the existing LanguageService for JavaScript? How to disable default LanguageService for JS?

Yours faithfully,

Mikhailo

+3
source share
1 answer

Have you tried to override the extension editor in the Tools menu?

Switch to

  • Tools โ†’ Options
  • Go to a text editor -> File Extension
  • Associate .js with the installed language installation
+1
source

Source: https://habr.com/ru/post/1713695/


All Articles