💾 Archived View for ychbn.flounder.online › posts › 2020-11-27-vim-cheatsheet.gmi captured on 2023-03-20 at 17:37:09. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2021-11-30)
-=-=-=-=-=-=-
date: 2020-11-27 09:28:34 +0300
I google some vim commands on regular basis, but don't remember them. So, it's time to create my own vim cheatsheet.
- ``-`` - jump to parent directory
- ``%`` - create file in current directory
- ``d`` - create new directory
- ``D`` - delete file/directory under cursor
- ``R`` - Rename file under cursor
- ``Ctrl-w v`` - split window vertically
- ``Ctrl-w s`` - split window hotizontally
- ``Ctrl-w k`` - move to upper window
- ``Ctrl-w l`` - move to right window
- ``Ctrl-w h`` - move to left window
- ``Ctrl-w o`` - close all windows except current
Delete all trailing spaces when save buffer(save it to .vimrc):
autocmd BufWritePre * %s/\s\+$//e
Seee also: