diff options
author | Sheogorath | 2018-10-28 10:01:37 +0100 |
---|---|---|
committer | Sheogorath | 2018-10-28 10:01:47 +0100 |
commit | 0915b3300068b86ce9848f7bef25508fcc60fb2f (patch) | |
tree | f9b5b2085a5a754bda282a330792951a3019b21d /public/docs | |
parent | c97027b897378d79be8d937f7a0c2605b7cdb017 (diff) |
Add documentation about editor modes in features page
Codemirror provides various modes via keymapping. These are already
available by a menu in the interface. But they aren't mentioned
anywhere.
This patch provides some documentation about the editor modes and their
implications. Since they are a feature, the documentation is done on the
features page.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'public/docs')
-rw-r--r-- | public/docs/features.md | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/public/docs/features.md b/public/docs/features.md index 3d790039..31c08d2e 100644 --- a/public/docs/features.md +++ b/public/docs/features.md @@ -88,9 +88,23 @@ You can hover and click <i class="fa fa-chain"></i> to anchor on it. Edit: === +## Editor Modes: +You can look in the bottom right section of the editor area, there you'll find a button with `sublime` on it. +When you click it, you can select 3 editor modes: + +- sublime (default) +- emacs +- vim + ## Shortcut Keys: -Just like Sublime text, which is pretty quick and convenient. -> For more infomation, see [here](https://codemirror.net/demo/sublime.html). +The shortcut keys depend on your selected editor mode. By default they are just like Sublime text, which is pretty quick and convenient. +> For more information, see [here](https://codemirror.net/demo/sublime.html). + +For emacs: +> For more information, see [here](https://codemirror.net/demo/emacs.html). + +For vim: +> For more information, see [here](https://codemirror.net/demo/vim.html). ## Auto-Complete: This editor provides full auto-complete hints in markdown. |