Skip to content

Commit

Permalink
maybe fix for #91
Browse files Browse the repository at this point in the history
  • Loading branch information
Ole Kroeger committed Aug 14, 2017
1 parent 5329cb2 commit 8f42f12
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.js
Expand Up @@ -2004,6 +2004,7 @@ define(function (require, exports, module) {
allDefinitions.jsx = allDefinitions.javascript;
allDefinitions.coffeescript = allDefinitions.javascript;
allDefinitions.livescript = allDefinitions.javascript;
allDefinitions.typescript = allDefinitions.javascript;


CommandManager.register('Funcdocr Annotate', COMMAND_ID, handleDocBlock);
Expand Down Expand Up @@ -2036,7 +2037,7 @@ define(function (require, exports, module) {
FUNCTION_REGEXP:FUNCTION_REGEXP
});

CodeHintManager.registerHintProvider(docrHints, ["javascript", "coffeescript", "livescript" ,"php", "jsx"], 0);
CodeHintManager.registerHintProvider(docrHints, ["javascript", "coffeescript", "livescript" ,"typescript", "php", "jsx"], 0);
});


Expand Down

0 comments on commit 8f42f12

Please sign in to comment.