Key Shorts | Table O Contents
The default shift + cmd + p combo keybinding allows the enduser to access the VSC command line interface …
Note. The Flammarion Logo Badge
in the page header above is an .svg
image file set to the dimensions of 5%
width, auto
height, and zoom
. Go ahead and test the zoom-out
feature by hovering over the badge to engage the expansion of the image.
Shift Command P
Hint. The standard set of Hot Keys in Visual Studio Code include the shift + cmd + p combo keybinding used to Show All Commands.
More to come …
Discover P
From the Default Keybindings file, the shift
+ cmd
+ p
combo keybinding invokes the following default method …
{
"key": "shift+cmd+p",
"command": "workbench.action.showCommands"
}
Shift Command I
How to change the Hot Key for the default method Insert Snippet
in Visual Studio Code for Mac Os High Sierra.
Discover I
First, check the inventory of Keyboard Shortcuts
currently in play at Code
+ Preferences
+ Keyboard Shortcuts
.
- Next, reduce the field of candidates by entering the following two keywords at the
Keyboard Shortcuts
prompt:
shift cmd
Solution
From the keybindings.json
file located under Code
+ Preferences
+ Keyboard Shortcuts
…
- Modify a new
shift
+cmd
+i
combo keybinding that invokes the (.json) markdown snippet collection in Visual Studio Code, as follows:
{
"key": "shift+cmd+i",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus && editorLangId == 'markdown'",
"args": {
"langId": "markdown"
},
}
Note. If you are unable to engage IntelliSense
from within your markdown (.md) pages, then use the above workaround to invoke your (.json) markdown snippet collection directly from the VSC command line interface.
IntelliSense
IntelliSense
is provided for JavaScript, TypeScript, JSON, HTML, CSS, Less, and Sass languages in Visual Studio Code (VSC).
To obtain IntelliSense
for your markdown (.md) pages you must install a language extension.
This is over and above a simple linting and style checking extension.
For example, use the term Markdown IntelliSense when querying the Extensions Marketplace in VSC.
Last Subtitle
More to come …
Note. The above synopsis was derived from an article written by Visual Studio Code [1].
- The Assigning Keybindings To Snippets section of Creating Your Own Snippets in Visual Studio Code. Published © 2018 by Code.visualstudio.com.
Support
Please support the co-workers who aggregate the Source Links for our projects.
Patreon
Like what you see in this project? If so, then support the authors and machine-elves
who aggregate the source links and pages for our projects via Patreon.