Skip to content

Commit 7bac4f0

Browse files
fix #36, preparing 0.16.0 release
1 parent 2055b8d commit 7bac4f0

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

Default.sublime-keymap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"command": "javascript_enhancements_can_i_use"
55
},
66
{
7-
"keys": ["super+alt+c"],
7+
"keys": ["super+alt+b"],
88
"command": "javascript_enhancements_navigate_flow_errors",
99
"args": {
1010
"type": "next"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ It offers better **JavaScript autocomplete** and also a lot of features about cr
1818
- Cordova projects (run cordova emulate, build, compile, serve, etc. directly from Sublime Text!)
1919
- Ionic v1 and v2 (it includes also v3) projects (same as Cordova projects!)
2020
- Angular v1 and v2 (it includes also v4 and v5) projects
21+
- Vue projects (only about the creation at this moment, see the [wiki](https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Example-Vue.js-project))
2122
- React projects (only about the creation at this moment)
2223
- React Native projects (only about the creation at this moment. I will add also **NativeScript** support)
2324
- Express projects (only about the creation at this moment)

changelog/0.16.0.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ v0.16.0
77
- Fixed export refactor feature preview
88
- Fixed some popup colors with different theme color scheme
99
- Fixed completions and hover_description that starts with "$"
10+
- Fixed issue #36, keymap of next flow error feature changed from "super+alt+c" to "super+alt+b"
1011

1112
## Improvements
1213

1314
- Complete code plugin refactoring
1415
- Improved completions performance using 'flow ide' command
1516
- Added "code screenshot" feature using [carbon](https://carbon.now.sh/)
1617
- updated flow-bin to 0.67.1
17-
- Added initial support for Vue.js
18+
- Added initial support for Vue.js (see https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Example-Vue.js-project)
1819
- Improved extract method feature
1920
- Improved completions detection from default_autocomplete.json
2021
- Added flow warnings
@@ -45,6 +46,7 @@ developing and managing javascript projects, such as:
4546
- Cordova projects (run cordova emulate, build, compile, serve, etc. directly from Sublime Text!)
4647
- Ionic v1 and v2 (it includes also v3) projects (same as Cordova projects!)
4748
- Angular v1 and v2 (it includes also v4 and v5) projects
49+
- Vue projects (only about the creation at this moment, see https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Example-Vue.js-project)
4850
- React projects (only about the creation at this moment)
4951
- React Native projects (only about the creation at this moment. I will add also NativeScript support)
5052
- Express projects (only about the creation at this moment)

changelog/install.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ developing and managing javascript projects, such as:
2121
- Cordova projects (run cordova emulate, build, compile, serve, etc. directly from Sublime Text!)
2222
- Ionic v1 and v2 (it includes also v3) projects (same as Cordova projects!)
2323
- Angular v1 and v2 (it includes also v4 and v5) projects
24+
- Vue projects (only about the creation at this moment, see https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Example-Vue.js-project)
2425
- React projects (only about the creation at this moment)
2526
- React Native projects (only about the creation at this moment. I will add also NativeScript support)
2627
- Express projects (only about the creation at this moment)

default_autocomplete.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,15 @@
7474
],
7575
[
7676
"for_of",
77-
"for (${1:variable} of object) {\n\t${2:// statement}\n}"
77+
"for (${1:variable} of ${2:object}) {\n\t${3:// statement}\n}"
7878
],
7979
[
8080
"for_in",
81-
"for (${1:variable} in object) {\n\t${2:// statement}\n}"
81+
"for (${1:variable} in ${2:object}) {\n\t${3:// statement}\n}"
8282
],
8383
[
8484
"do_while",
85-
"do{\n\t// statement\n} while (${1:condition})"
85+
"do{\n\t${2:// statement}\n} while (${1:condition})"
8686
],
8787
[
8888
"while",

0 commit comments

Comments
 (0)