Pārlūkot izejas kodu

Short vim reminder created

DricomDragon 5 gadi atpakaļ
vecāks
revīzija
a771fe3bf8
1 mainītis faili ar 29 papildinājumiem un 0 dzēšanām
  1. 29 0
      Guides/vim.md

+ 29 - 0
Guides/vim.md

@@ -0,0 +1,29 @@
+# Vim
+Jovian cheat sheet for vim
+
+## Bookmark
+`mx` to bookmark with letter _x_
+
+`\`x` to go to _x_
+
+## Case
+`gu` and movement to lowercase
+
+`gU` and movement to uppercase
+
+## Diff
+__vimdiff__ basics
+
+### Configure git
+`git config --global diff.tool vimdiff`
+
+### Make contents identical
+`dp` : diffput throws changement in the other window
+
+`do` : diffget obtains changements from the other window
+
+### Jump between diffs
+`]c` next
+
+`[c` previous
+