Releases: WantChane/key-sequence-obsidian
Releases · WantChane/key-sequence-obsidian
Release list
2.0.0
BREAKING CHANGES
- Modal UI removed. Key sequences are no longer configured through Settings → Key Sequence → New keymap. Everything is now defined in a vimrc-style config file.
- Vim mode integration removed. The plugin no longer cares about Obsidian's Vim mode. Instead, key sequences are simply disabled when an input/textarea/select/contentEditable element is focused.
Migration from 1.x
- Create a config file at .obsidian/key-sequence.vimrc (auto-created on first load).
- Rewrite your key sequences using the new syntax:
" comment
let mapleader = "<key>"
gmap <key-sequence> :<command-id><CR>
- Use
Key Sequence: Reload config fileto apply changes without restarting.