I don't want word completion for Markdown files in Visual Studio Code, how do I disable it? Ideally, for Markdown only but in the worst case, even a global switch would be good.
相关问题
- Extended message for commit via Visual Studio Code
- Where are Automatic Type Acquisition typescript de
- Typescript: Why doesn't visual studio code rep
- .NET Core 3.1 CreateHostBuilder Cannot parse JSON
- How to get VS Code debug data like breakpoints, st
相关文章
- Visual Studio Code, MAC OS X, OmniSharp server is
- Omnisharp in VS Code produces a lot of warnings ab
- Visual Studio 2015 JSX/ES2015 syntax highlighting
- Visual Studio Code command for “repeat last comman
- Code completion is not working for OpenCV and Pyth
- VSCode remove warnings from problems tab
- Configure a TypeScript project with common depende
- Visual Studio Code disabling Normal, Edit and Visu
In addition to what @JakubS said, there are two more settings that will help eliminate IntelliSense:
The
editor.autoClosingBrackets
option will stop Visual Studio Code from automatically inserting a closing parenthesis, bracket, brace, single quote, double quote, etc.The
editor.suggestOnTriggerCharacters
option will stop the auto-complete window from appearing when you type a dollar sign or dot.All together, here's what I use:
IntelliSense suggestions in VS Code can be configured globally or per each workspace and as of 1.9 per file-type (language), using the
editor.quickSuggestions
,editor.acceptSuggestionOnEnter
andeditor.suggestOnTriggerCharacters
settings.File-type settings (preferred, as of 1.9 release)
Open the Command Palette by pressing F1 and run the
Configure language specific settings
command, then selectMarkdown
. A new editor pane will open where you can place those settings:This way you'll disable IntelliSense for markdown files only.
Global
Open Command Palette by pressing F1, type
open user settings
and press Enter. A new editor pane will open where you can place those settings:Workspace
Workspace settings allows to set custom settings without applying them to your other VS Code projects. The workspace settings file is located under the
.vscode
folder in your project.Open Command Palette by pressing F1, type
open workspace settings
and press Enter. A new editor pane will open when you can place same snipped as listed above.I don't know if it's currently possible to associate settings with selected filetypes.
Other options to configure
In addition to
editor.quickSuggestions
several other options can be changed to further customize how IntelliSense works: