User Tools

Site Tools


vim

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
vim [2012/03/26 16:44] javapimpvim [2023/08/18 18:15] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Syntax Highlighting ======
 +<code>
 +:syntax on
 +</code>
 +
 +This can also be added to ''.vimrc''
 +
 ====== Yank or delete between parentheses ====== ====== Yank or delete between parentheses ======
 =====  Motion select ===== =====  Motion select =====
Line 62: Line 69:
 :s/^--/   - SQL :s/^--/   - SQL
 </code> </code>
 +
 +====== Auto Indentation ======
 +<code>
 +:set autoindent
 +:set cindent
 +</code>
 +
 +====== Add/Remove indentation ======
 +
 +  - Enter visual mode: ''v''
 +  - Select the lines to indent.
 +  - ''>'' to increase indent one tab ''<'' to decrease indent one tab.
 +  - ''n>'' to increase indent ''n'' tabs.
 +  - ''n<'' to decrease indent ''n'' tabs.
 +
 +====== Replace word with copied text ======
 +
 +  - Yank (or delete) the text into a buffer: ''yw'' - to yank a word.
 +  - Move to the beginning of the word to replace.
 +  - ''vwp'' - ''v'' for visual select, ''w'' for the word, ''p'' to paste.
 +
 +====== Reload the current file from disk ======
 +
 +  * Reload the current file: '':edit'' (without specifying a file name)
 +  * Reload the current file after it's been modified: '':edit!''
 +
 +====== Change Case ======
 +
 +  * Change word to lowercase: ''guw''
 +  * Change word to uppercase: ''gUw''
 +  * Toggle word case (aBBa -> AbbA): ''g~w''
 +
  
  
  
vim.1332780267.txt.gz · Last modified: 2023/08/18 18:15 (external edit)