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/04/11 16:05] 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 61: Line 68:
 :s/^\/\// - C, C++, C#, Java, JavaScript :s/^\/\// - C, C++, C#, Java, JavaScript
 :s/^--/   - SQL :s/^--/   - SQL
 +</code>
 +
 +====== Auto Indentation ======
 +<code>
 +:set autoindent
 +:set cindent
 </code> </code>
  
Line 81: Line 94:
   * Reload the current file: '':edit'' (without specifying a file name)   * Reload the current file: '':edit'' (without specifying a file name)
   * Reload the current file after it's been modified: '':edit!''   * 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.1334160353.txt.gz · Last modified: 2023/08/18 18:15 (external edit)