diff --git a/content/rambles/ssh-configuration.md b/content/rambles/ssh.md similarity index 100% rename from content/rambles/ssh-configuration.md rename to content/rambles/ssh.md diff --git a/content/rambles/vim.md b/content/rambles/vim.md index 91c6398..1a28a9c 100644 --- a/content/rambles/vim.md +++ b/content/rambles/vim.md @@ -15,9 +15,9 @@ These are a few bindings that I don't feel require an extensive explanation. | binding | action | | --- | --- | -| Z Z | write and quit; equivalent to :wq | -| Z Q | quit; equivalent to :q! | -| :x | write and quit; equivalent to :wq | +| Z Z | write and quit; equivalent to `:wq` | +| Z Q | quit; equivalent to `:q!` | +| :x | write and quit; equivalent to `:wq` | | g u | swap characters to lower case | | g u u | swap characters to lower case on current line | | g U | swap characters to upper case | @@ -30,6 +30,7 @@ These are a few bindings that I don't feel require an extensive explanation. | z = | open spelling suggestions based on current dictionary and highlighted word | | . | repeat last modify operation | | ; | repeat last move operation | +| ! | start command with `:!` | ## Splits and Terminals You can split your vim window with somewhat Emacs-like chords by default; I don't bother changing them because I use with quite a few different computers, not all of which have my Vim dotfiles installed. @@ -91,7 +92,7 @@ set ignorecase set smartcase set number set relativenumber -set wildmeny +set wildmenu set mouse= set scrolloff=3 set listchars=tab:│\ ,lead:·,trail:·,eol:¬ "'lead' is a NeoVim specific option