You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+32-36Lines changed: 32 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,13 +55,11 @@ You can ENABLE or DISABLE completions! Just go to Preferences -> Package Setting
55
55
56
56
<strong>Supported only by Sublime Text 3</strong>
57
57
58
-
<strong>key-map</strong> of this feature disabled by default!
59
-
60
58
You can check the description of function/property/method by selecting the word (or, in case, it will take the first word near the blinking cursor) you want find. "right-click" on your mouse and click on "Find JavaScript Description".
61
59
62
60
It will show a popup with the list of possible descriptions or, in some case, the direct description.
63
61
64
-
In case, you can also use "key-map"! Just go to Preferences -> Package Settings -> JavaScript Completions and enable it.
@@ -132,11 +120,11 @@ You can use this feature in HTML, CSS and JavaScript context!
132
120
133
121
Just put the cursor on the word you want to check, "right-click" -> <code>"Can I use?"</code> and it will appear an input panel with all items that have a name matching with the word.
134
122
135
-
You can use key-map: <code>ctrl+alt+w</code>. You can also change it. Just go to Preferences -> Package Settings -> JavaScript Completions Tools -> Key Bindings - User.
123
+
You can use key-map: <code>ctrl+alt+w</code>. Key-Map list: Preferences -> Package Settings -> JavaScript Completions -> Key Bindings - Default.
136
124
137
125
After selecting an item from the list, it will appear a popup with all information from the [http://caniuse.com](http://caniuse.com) support tables.
138
126
139
-
You can also use the menu <code>JavaScript Completions Tools</code> on the top and select <code>Search on "Can I use" list</code> to search what you want.
127
+
You can find it under <code>"Tools"</code> menu -> <code>"JavaScript Completions"</code> -> <code>Search on "Can I use" list</code>.
140
128
141
129
Example :
142
130
@@ -155,35 +143,47 @@ Example :
155
143
156
144
This feature uses [https://github.com/jsdoc3/jsdoc](https://github.com/jsdoc3/jsdoc) to generate API documentation.
157
145
158
-
You can find it under <code>"JavaScript Completions Tools"</code> menu -> <code>JSDoc</code>.
146
+
You can find it under <code>"Tools"</code> menu -> <code>"JavaScript Completions"</code>.
159
147
160
148
There are 2 main menu items:
161
149
- Generate Documentation
162
-
- Add jsdoc-settings.json to the current project folder
150
+
- Add jsdoc configuration file to the current project folder
163
151
164
152
<strong>These items can be used only with a project folder opened.</strong>
165
153
166
154
<code>"Generate Documentation"</code> uses the jsdoc command line to generate documentation.
167
155
168
-
It uses <code>jsdoc-settings.json</code> file for configuration or, alternately, it will use default configuration.
156
+
It uses the defaukt <code>conf.json</code> file for configuration.
<code>"Add jsdoc-settings.json to the current project folder"</code> will add a <code>jsdoc-settings.json</code> file with default values to the current project folder.
186
+
<code>"Add jsdoc configuration file to the current project folder"</code> will add a <code>conf.json</code> file with default values to the current project folder.
187
187
188
188
How to use JSDoc: [http://usejsdoc.org/](http://usejsdoc.org/)
189
189
@@ -209,16 +209,12 @@ You can surround code with:
209
209
- for statement
210
210
- try catch statement
211
211
- try catch finally statement
212
-
- Multi-line comment
213
-
- Single-line comment
214
212
215
213
This option works also on multiple selections at once.
216
214
217
215
<h4id="delete-surround">Delete Surrounded</h4>
218
216
219
217
Options are:
220
-
- Delete multi-line comment
221
-
- Delete single-line comment
222
218
- Strip quoted string
223
219
224
220
This option works also on multiple selections at once.
0 commit comments