| .gitignore | ||
| main.ts | ||
| manifest.json | ||
| package.json | ||
| README.md | ||
| rollup.config.js | ||
| tsconfig.json | ||
Obsidian Vimrc Support Plugin
This plugin loads a file of Vim commands from VAULT_ROOT/.obsidian.vimrc.
For users of the Obsidian.md Vim mode, this is very useful for making various settings (most notably keymaps) persist.
Usage
First and foremost, make sure you have the Obsidian Vim key bindings turned on -- see Editor -> Vim key bindings.
Now to keep some of your Vim settings permanent, install this plugin and put a file named .obsidian.vimrc in your vault root.
If you're using multiple vaults, you'll need this file on each one.
Here's a simple & useful .obsidian.vimrc that I'm using:
nmap j gj
nmap k gk
nmap H ^
nmap L $
nmap <F9> :nohl
Supported Commands
The commands that can be used are whatever CodeMirror supports.
I couldn't find a formal list anywhere but you can look for defaultExCommandMap in the source code, or play around with trying commands in Obsidian's Vim mode.
Note that the file parsing is as simple as it gets -- it just sends each line to the CodeMirror Ex-command parser. Therefore comments or other features you may expect don't work.
Also, commands that fail don't generate any visible error for now.
Installation
In the Obsidian.md settings under "Third-party plugin", turn off Safe mode, then browse to this plugin.
Alternatively (and less recommended), you can install it manually: just copy main.js and manifest.json to your vault VaultFolder/.obsidian/plugins/obsidian-vimrc-support/.
Wishlist
There are many things that I wish the CodeMirror implementation would allow. Many of these can be added using the CodeMirror API for extending its Vim mode and maybe I'll work on these at some point.
Things I'd love to add:
- Implement some standard
vim-markdownmotions for Obsidian, e.g.[[, or implement for CodeMirror the 1-2 missing Ex commands required to define these keymaps in the Vimrc. - Relative line numbers.
Changelog
0.1.1
Fixed an issue caused by the plugin injecting the Vimrc on every file load. The plugin now injects the Vimrc just once for the CodeMirror class (for the class -- not object instance, because that's where CodeMirror keeps the Vim settings.)
This seems to work well, but in theory there could be Vimrc settings that are CodeMirror-object bound and not class-bound, and in that case we'll be in trouble (these settings will be lost when Obsidian replaces CodeMirror objects).