Merge pull request #6 from alefragnani/EnableForAnyFileType

Closes #5 - command 'extension.textFunctions' not found
This commit is contained in:
Sean McBreen 2017-04-05 09:15:40 -07:00 коммит произвёл GitHub
Родитель 0e6eb613bc c02d4ba865
Коммит 912ecacf7f
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -17,7 +17,7 @@ Open up VS Code and hit `F1` and type `ext` select Install Extension and type `m
# Update a selection
The extension is activated when you load up a `Markdown` file and you open up a menu of commands by pressing `Alt+T`. Multi selection is supported for all commands. If you select ASCII Art you will get a secondary menu where you can choose the font.
The extension is activated for all file types, and you open up a menu of commands by pressing `Alt+T`. Multi selection is supported for all commands. If you select ASCII Art you will get a secondary menu where you can choose the font.
# Known Issues

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "MDTools",
"description": "Text replacement functions e.g. change case, reverse and ASCII Art for Markdown.",
"description": "Text replacement functions e.g. change case, reverse and ASCII Art for all file types.",
"version": "1.0.0",
"publisher": "seanmcbreen",
"categories":[
@ -21,7 +21,7 @@
"theme" : "dark"
},
"activationEvents": [
"onLanguage:markdown"
"onCommand:extension.textFunctions"
],
"engines": {
"vscode": "^1.0.0"