Fix #320 All LaTeX Workshop commands also activate the extension despite document type

This commit is contained in:
James-Yu 2017-11-21 14:15:52 +08:00
parent c06673fc59
commit 7315ab8662
2 changed files with 25 additions and 2 deletions

View File

@ -1,5 +1,18 @@
# Change Log
## [3.7.0] - 2017-11-21
### Added
- (#308) Multi-root support @innerlee.
- (#313) `chkTeX` now supports `.chktexrc` config @innerlee.
### Changed
- (#314) Empty bibliography warning is now omitted @innerlee.
- (#320) All LaTeX Workshop commands also activate the extension despite document type.
### Fixed
- (#312) SyncTeX fails if the current position locates on last line which is empty @innerlee.
- (#323) Irregular LaTeX log lead to trailing whitespace in file stack.
## [3.6.2] - 2017-11-15
### Changed
- (#283, #302) Update README @lippertmarkus.

View File

@ -3,7 +3,7 @@
"displayName": "LaTeX Workshop",
"description": "Boost LaTeX typesetting efficiency with preview, compile, autocomplete, colorize, and more.",
"icon": "icon.png",
"version": "3.6.2",
"version": "3.7.0",
"publisher": "James-Yu",
"license": "MIT",
"homepage": "https://github.com/James-Yu/LaTeX-Workshop",
@ -26,7 +26,17 @@
"hint"
],
"activationEvents": [
"onLanguage:latex"
"onLanguage:latex",
"onCommand:latex-workshop.build",
"onCommand:latex-workshop.view",
"onCommand:latex-workshop.tab",
"onCommand:latex-workshop.synctex",
"onCommand:latex-workshop.clean",
"onCommand:latex-workshop.citation",
"onCommand:latex-workshop.wordcount",
"onCommand:latex-workshop.compilerlog",
"onCommand:latex-workshop.log",
"onCommand:latex-workshop.actions"
],
"main": "./out/src/main",
"contributes": {