Skip to content

Commit

Permalink
fix #36, preparing 0.16.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pichillilorenzo committed Mar 11, 2018
1 parent 2055b8d commit 7bac4f0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Default.sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"command": "javascript_enhancements_can_i_use"
},
{
"keys": ["super+alt+c"],
"keys": ["super+alt+b"],
"command": "javascript_enhancements_navigate_flow_errors",
"args": {
"type": "next"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ It offers better **JavaScript autocomplete** and also a lot of features about cr
- Cordova projects (run cordova emulate, build, compile, serve, etc. directly from Sublime Text!)
- Ionic v1 and v2 (it includes also v3) projects (same as Cordova projects!)
- Angular v1 and v2 (it includes also v4 and v5) projects
- Vue projects (only about the creation at this moment, see the [wiki](https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Example-Vue.js-project))
- React projects (only about the creation at this moment)
- React Native projects (only about the creation at this moment. I will add also **NativeScript** support)
- Express projects (only about the creation at this moment)
Expand Down
4 changes: 3 additions & 1 deletion changelog/0.16.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ v0.16.0
- Fixed export refactor feature preview
- Fixed some popup colors with different theme color scheme
- Fixed completions and hover_description that starts with "$"
- Fixed issue #36, keymap of next flow error feature changed from "super+alt+c" to "super+alt+b"

## Improvements

- Complete code plugin refactoring
- Improved completions performance using 'flow ide' command
- Added "code screenshot" feature using [carbon](https://carbon.now.sh/)
- updated flow-bin to 0.67.1
- Added initial support for Vue.js
- Added initial support for Vue.js (see https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Example-Vue.js-project)
- Improved extract method feature
- Improved completions detection from default_autocomplete.json
- Added flow warnings
Expand Down Expand Up @@ -45,6 +46,7 @@ developing and managing javascript projects, such as:
- Cordova projects (run cordova emulate, build, compile, serve, etc. directly from Sublime Text!)
- Ionic v1 and v2 (it includes also v3) projects (same as Cordova projects!)
- Angular v1 and v2 (it includes also v4 and v5) projects
- Vue projects (only about the creation at this moment, see https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Example-Vue.js-project)
- React projects (only about the creation at this moment)
- React Native projects (only about the creation at this moment. I will add also NativeScript support)
- Express projects (only about the creation at this moment)
Expand Down
1 change: 1 addition & 0 deletions changelog/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ developing and managing javascript projects, such as:
- Cordova projects (run cordova emulate, build, compile, serve, etc. directly from Sublime Text!)
- Ionic v1 and v2 (it includes also v3) projects (same as Cordova projects!)
- Angular v1 and v2 (it includes also v4 and v5) projects
- Vue projects (only about the creation at this moment, see https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Example-Vue.js-project)
- React projects (only about the creation at this moment)
- React Native projects (only about the creation at this moment. I will add also NativeScript support)
- Express projects (only about the creation at this moment)
Expand Down
6 changes: 3 additions & 3 deletions default_autocomplete.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@
],
[
"for_of",
"for (${1:variable} of object) {\n\t${2:// statement}\n}"
"for (${1:variable} of ${2:object}) {\n\t${3:// statement}\n}"
],
[
"for_in",
"for (${1:variable} in object) {\n\t${2:// statement}\n}"
"for (${1:variable} in ${2:object}) {\n\t${3:// statement}\n}"
],
[
"do_while",
"do{\n\t// statement\n} while (${1:condition})"
"do{\n\t${2:// statement}\n} while (${1:condition})"
],
[
"while",
Expand Down

0 comments on commit 7bac4f0

Please sign in to comment.