-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
trying to fix Autocompletion tooltip stuttering
- Loading branch information
1 parent
c2cc24e
commit d9f5780
Showing
7 changed files
with
155 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
This plugin uses **[Flow](https://github.com/facebook/flow)** (javascript static type checker from Facebook) under the hood. | ||
|
||
This is in **Beta** version for testing. | ||
This is in **BETA** version for **testing**. | ||
|
||
It offers better **javascript autocomplete** and also a lot of features about creating, developing and managing **javascript projects**, such as: | ||
|
||
|
@@ -18,7 +18,7 @@ It offers better **javascript autocomplete** and also a lot of features about cr | |
- JavaScript real-time errors | ||
- etc. | ||
|
||
You could use it also in **existing projects** (see the [Wiki](https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki))! | ||
You could use it also in **existing projects** (see the [Wiki](https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Using-it-with-an-existing-project))! | ||
|
||
It turns Sublime Text into a **JavaScript IDE** like! | ||
|
||
|
@@ -69,7 +69,7 @@ Manually: | |
|
||
If the plugin gives to you message errors like `Error during installation: "node.js" seems not installed on your system...` but instead you have installed node.js and npm (for example using [nvm](https://github.com/creationix/nvm)), then you could try to set your custom path in the [Global settings](https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Global-settings) of the plugin and then restart Sublime Text. | ||
|
||
If this not works too, then you could try to add the custom path that contains binaries of node.js and npm in the **`PATH`** key-value on the same JavaScript Enhancements settings file. This variable will be **concatenated** to the **$PATH** environment variable, so you could use the same syntax in it. After that you need to restart Sublime Text. Example of a global setting for `Linux` that uses `nvm`: | ||
If this not works too, then you could try to add the custom path that contains binaries of node.js and npm in the **`PATH`** key-value on the same JavaScript Enhancements settings file. This variable will be **appended** to the **$PATH** environment variable, so you could use the same syntax in it. After that you need to restart Sublime Text. Example of a global setting for `Linux` that uses `nvm`: | ||
|
||
``` | ||
{ | ||
|
@@ -108,6 +108,10 @@ See the [Wiki](https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki) f | |
|
||
Email me for any questions or doubts about this project on: [[email protected]](mailto:[email protected]) | ||
|
||
### Issues | ||
|
||
For any problems, open an issue with the Sublime Text console logs please! | ||
|
||
### Feature request/enhancement | ||
|
||
For feature requests or them enhancement, please open an issue with the corresponding label. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
v0.1.11 | ||
|
||
## Fixes | ||
|
||
- Trying to fix "Autocompletion tooltip stutters" #5 | ||
|
||
|
||
================================================================= | ||
** THIS PLUGIN IS IN BETA! Thanks for your support in advance! ** | ||
================================================================= | ||
|
||
If you like it, remember to star it ⭐ on GitHub: https://github.com/pichillilorenzo/JavaScriptEnhancements | ||
|
||
** USAGE ** | ||
=========== | ||
|
||
See how it works on the Wiki: 👉👉 https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki 👈👈 | ||
|
||
|
||
** WHAT IS THIS? ** | ||
=================== | ||
|
||
This plugin uses Flow (javascript static type checker from Facebook) under the hood. | ||
|
||
It offers better javascript autocomplete and a lot of features about creating, | ||
developing and managing javascript projects, such as: | ||
|
||
- Cordova projects (run cordova emulate, build, compile, serve, etc. directly from Sublime Text!) | ||
- Ionic v1 and v2 projects (same as Cordova projects!) | ||
- Angular v1 and v2 projects | ||
- React projects | ||
- Express projects | ||
- Yeoman generators | ||
- Local bookmarks project | ||
- JavaScript real-time errors | ||
- etc. | ||
|
||
You could use it also in existing projects (see the Wiki - https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Using-it-with-an-existing-project)! | ||
|
||
It turns Sublime Text into a JavaScript IDE like! | ||
|
||
This project is based on my other Sublime Text plugin JavaScript Completions (https://github.com/pichillilorenzo/JavaScript-Completions) | ||
|
||
** NOTE ** | ||
If you want use this plugin, you may want uninstall/disable the JavaScript Completions plugin, if installed. | ||
|
||
** OS SUPPORTED NOW ** | ||
====================== | ||
|
||
👉 Linux (64-bit) | ||
👉 Mac OS X | ||
|
||
❗❗ Dependencies ❗❗ | ||
======================= | ||
|
||
In order to work properly, this plugin has some dependencies: | ||
|
||
👉 Sublime Text 3 (build 3124 or newer) | ||
👉 Node.js and npm (https://nodejs.org or nvm (https://github.com/creationix/nvm)) | ||
👉 TerminalView sublime text plugin (https://github.com/Wramberg/TerminalView) | ||
|
||
Not required, but useful for typescript files (Flow wont work on this type of files): | ||
|
||
👉 TypeScript sublime text plugin (https://github.com/Microsoft/TypeScript-Sublime-Plugin) | ||
|
||
** Flow Requirements ** | ||
======================= | ||
|
||
It use [Flow](https://github.com/facebook/flow) for type checking and auto-completions. | ||
|
||
👉 Mac OS X | ||
👉 Linux (64-bit) | ||
👉 Windows (64-bit) | ||
|
||
Email me for any questions or doubts about this new project on: [email protected] | ||
|
||
Thanks for your support! 😄😄 | ||
|
||
MIT License |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[{"caption": "Tools", "id": "tools", "children": [{"caption": "Npm/Yarn Scripts", "id": "npm_scripts", "children": []}]}] | ||
[{"children": [{"children": [], "caption": "Npm/Yarn Scripts", "id": "npm_scripts"}], "caption": "Tools", "id": "tools"}] |