Skip to content

Commit af6bcae

Browse files
updated support for flow cli in projects
1 parent 277447d commit af6bcae

23 files changed

+496
-246
lines changed

Default.sublime-keymap

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,13 @@
1616
"args": {
1717
"type": "previous"
1818
}
19+
},
20+
{
21+
"keys": ["ctrl+alt+g"],
22+
"command": "go_to_def"
23+
},
24+
{
25+
"keys": ["ctrl+alt+s"],
26+
"command": "show_hint_parameters"
1927
}
2028
]

JavaScript Enhancements.sublime-settings

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"enable_can_i_use_menu_option": true,
3-
"node_js_custom_path": "node",
4-
"npm_custom_path": "npm",
2+
"enable_can_i_use_menu_option": true,
3+
"node_js_custom_path": "node",
4+
"npm_custom_path": "npm",
55
"yarn_custom_path": "yarn",
66
"cordova_custom_path": "cordova",
77
"ionicv1_custom_path": "ionic",

Main.sublime-menu

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,16 @@
77
"caption": "JavaScript Enhancements",
88
"mnemonic": "J",
99
"id": "javascript_completions_tools",
10-
"children":[
10+
"children":[
1111
{
12-
"caption": "Flow",
13-
"mnemonic": "F",
14-
"id": "flow",
15-
"children": [
16-
{
17-
"caption": "Use Flow checker on current view (Not used in project)",
18-
"id": "use_flow_checker_on_current_view",
19-
"checkbox": true,
20-
"command": "toggle_setting",
21-
"args": {"setting": "use_flow_checker_on_current_view"}
22-
}
23-
]
12+
"caption": "Use Flow checker on current view (Not used in project)",
13+
"id": "use_flow_checker_on_current_view",
14+
"checkbox": true,
15+
"command": "toggle_setting",
16+
"args": {"setting": "use_flow_checker_on_current_view"}
2417
},
2518
{
26-
"caption": "Goto Definition",
19+
"caption": "Flow Goto Definition",
2720
"id": "go_to_def",
2821
"command": "go_to_def"
2922
},
@@ -81,6 +74,11 @@
8174
"caption": "GitHub Project",
8275
"command": "open_url",
8376
"args": {"url": "https://github.com/pichillilorenzo/JavaScriptEnhancements"}
77+
},
78+
{
79+
"caption": "Donate to this Project",
80+
"command": "open_url",
81+
"args": {"url": "https://opencollective.com/javascriptenhancements"}
8482
}
8583
]
8684
}

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,21 @@ Manually:
8181
![](https://drive.google.com/uc?authuser=0&id=1Y0NS1eb8aFoxhdn75JLoGgZMPPpqld3Z&export=download)
8282
![](https://drive.google.com/uc?authuser=0&id=1lHXQGN3CoV5-IHAoesEmkiJBjnpU2Lxf&export=download)
8383

84-
## Feature request/enhancement
84+
## Support
85+
86+
Email me for any questions or doubts about this project on: [[email protected]](mailto:[email protected])
87+
88+
### Feature request/enhancement
8589

8690
For feature requests or them enhancement, please open an issue with the corresponding label.
8791

88-
## Support
92+
### Donation
8993

90-
Email me for any questions or doubts about this project on: [[email protected]](mailto:[email protected])
94+
If this project help you reduce time to develop and also you like it, please support it with a donation :smile::thumbsup:. Thanks!
9195

92-
Thanks for your support!!!
96+
<a href="https://opencollective.com/javascriptenhancements/donate" target="_blank">
97+
<img alt="opencollective" src="https://opencollective.com/javascriptenhancements/donate/[email protected]?color=blue" width=300 />
98+
</a>
9399

94100
## License
95101

0 commit comments

Comments
 (0)