CodeMix lets you tailor how content-assist (IntelliSense) works when you are editing files. These are customized via settings and are called Quick Suggestions.
If you don’t like CodeMix editor’s as-you-type Content Assist, here’s a way you can quickly disable it. By doing this you can still invoke Content Assist by pressing CTRL + SPACE
.
1. Go to Preferences > CodeMix > Workspace Settings
page.
2. Click the settings.json
link at the bottom of the page. It will open a json file.
3. Add the following lines under settings
like this :
1
2
3
4
5
6
7
8
9
|
“settings”: {
“editor.quickSuggestions”: {
“other”: false,
“comments”: false,
“strings”: false
},
...
|
4. Save the file.
And that’s it! It will disable content assist on keystroke.
Additionally there’s a feature called “Parameter Hints” which helps filling in parameters. This can also be turned off by just adding "editor.parameterHints.enabled": false
in the same settings
area. Like this:
1
2
3
4
5
|
“settings”: {
“editor.parameterHints.enabled”: false,
…
|
发表回复