From c10550f9c79bc3f64461b80ecc6c60b4f8e5f926 Mon Sep 17 00:00:00 2001 From: Julian Torres Date: Thu, 29 Oct 2020 00:34:16 -0400 Subject: [PATCH 1/2] Add pointers for how to add `,` keybinding for major mode to documentation --- docs/major-mode.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/major-mode.md b/docs/major-mode.md index 9d975ab..4dcb65c 100644 --- a/docs/major-mode.md +++ b/docs/major-mode.md @@ -5,6 +5,10 @@ title: Major Mode Major mode offers dynamic menu and functions based on the active buffer. You can access key bindings specific to the current major mode by pressing ` m` or `,` if you want to save one keystroke. +:::note +If `,` isn't bound, you might need to update your settings. You can do this by running the command "VSpaceCode: Configure Default Settings" (this will add the necessary keybindings to your `settings.json`). More information can be found in the [Installation](./) instructions. +::: + For example, you can press ` m x b` to make the text bold in a markdown buffer. To find the active language mode of your current buffer, you can look at the bottom right of the status bar. From ccdf873b1e5f27a4a0e89c9830eea9ecf9d58df2 Mon Sep 17 00:00:00 2001 From: Julian Torres Date: Thu, 29 Oct 2020 17:51:55 -0400 Subject: [PATCH 2/2] Update docs/major-mode.md Co-authored-by: Marco Ieni <11428655+MarcoIeni@users.noreply.github.com> --- docs/major-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/major-mode.md b/docs/major-mode.md index 4dcb65c..597e0a3 100644 --- a/docs/major-mode.md +++ b/docs/major-mode.md @@ -6,7 +6,7 @@ title: Major Mode Major mode offers dynamic menu and functions based on the active buffer. You can access key bindings specific to the current major mode by pressing ` m` or `,` if you want to save one keystroke. :::note -If `,` isn't bound, you might need to update your settings. You can do this by running the command "VSpaceCode: Configure Default Settings" (this will add the necessary keybindings to your `settings.json`). More information can be found in the [Installation](./) instructions. +If `,` isn't bound, you might need to update your settings. You can add the necessary keybindings to your `settings.json` by pressing `Ctrl+Shift+p` and running the command "VSpaceCode: Configure Default Settings". More information can be found in the [Installation](./) instructions. ::: For example, you can press ` m x b` to make the text bold in a markdown buffer.