vim
commands and shortcuts
- Ditch vimwiki
- Generate index.md
<c-r>=glob('**/*')
:help jumplist
- Todo consolidations
- Manage all todos
editing techniques
f: Move forward to character
; ,: Navigate forward and backward
d: Delete
dt_: Delete till character
di{: Delete inside braces
da{: Delete around braces
dip: Delete paragraph
- Check out relative line number (
:set relativenumber)
file navigation
%: Jump to matching parenthesis
- Fuzzy file find:
:e src/**/file_na<tab>
navigation and window management
Ctrl + ^: Switch to last file
Ctrl + O/I: Navigate through jump list
- Bookmarks:
m<key>: Set bookmark (use uppercase for global)
'<key>: Jump to bookmark
- Window operations (
Ctrl + W):
v: Split vertically
s: Split horizontally