Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
development:vim:start [2020/03/19 13:05]
kalenpw created
development:vim:start [2021/07/02 11:28] (current)
kalenpw
Line 15: Line 15:
   * ''viB'' - select curly brace block   * ''viB'' - select curly brace block
   * ''vib'' - select paren block   * ''vib'' - select paren block
-  * ''vi''' - select text within single quote+  * ''%%vi'%%'' - select text within single quote
   * ''vi"'' - select text within double quote   * ''vi"'' - select text within double quote
 +  * ''vit''/''cit'' - Select text between html brackets / c = and insert
   * ''c'' - delete selected and go to insert mode   * ''c'' - delete selected and go to insert mode
   * ''ggVG'' - select entire file   * ''ggVG'' - select entire file
Line 23: Line 24:
   * ''f<char>'' - go forward to next instance of ''<char>'' in line '';'' to repeat   * ''f<char>'' - go forward to next instance of ''<char>'' in line '';'' to repeat
   * ''F<char>'' - go backward to previous instance of ''<char>'' in line '';'' to repeat   * ''F<char>'' - go backward to previous instance of ''<char>'' in line '';'' to repeat
 +
  
 ---- ----
 ===== Search ===== ===== Search =====
 ''$'' needs escaped to be ''\$'' as ''$'' represents end of line ''$'' needs escaped to be ''\$'' as ''$'' represents end of line
 +
 +----