- Ruby
- Elm
- Elixir
- Go
- JavaScript
- HTML
- CSS
- Markdown
- 2 spaces, no tabs, soft and smart tabbing enabled
- Current column and row highlighted
- Red marker at 80 columns
- Uses MyContrast color scheme tested on almost 100 monitors and projectors in various lighting configurations
- Line numbering and syntax enabled
,<spacebar>
switches between the two most recent files,sp
toggles spell check on and off.zg
adds word under cursor to your dictionary
,l
toggles whitespace character visibility,g
will attempt to launch the program for the current file- HTML files open with default browser
- Ruby files run with
ruby
- Elixir files run with
elixir
- Java files compile and run with
javac
andjava
- JavaScript files run with
node
,r
reloads the Vim configuration,1
switches to the previous tab,2
switches to the next tabF5
toggles highlighted search terms on and offF6
on OSX opens the Finder to reveal the folder you're working in,x
deletes the line without saving it to the clipboard,o
creates blank line below cursor without insert mode,O
creates blank line above cursor without insert mode
CTRL+j
moves downCTRL+k
moves upCTRL+h
moves leftCTRL+l
moves right
jj
in INSERT mode will exit INSERT mode and save the filejk
in INSERT mode exits INSERT mode
Powered by the NERDTree plugin
,d
opens and closes the tree displaying contents of current folder- press
Enter
to open the file in the main buffer - press
i
to open the file in a horizontal split - press
s
to open the file in a vertical split - press
m
when on a node to get themenu
to add, delete, rename files.
- press
This tree always opens to display the root
folder of a project if you are using Subversion or Git. Disable the rooter plugin if you don't want this behavior.
Powered by the Ctrl-P plugin
,f
opens the search window. Type part of the filename to locate it.- Press
Ctrl-K
andCtrl-j
to go up and down the list - Press
F5
to refresh file list
- Press
,b
opens search window for buffers only.
Code commenting is powered by NERDCommenter
Use VISUAL
mode to select text. Then press:
,cc
to comment out selected text,cu
to uncomment selected text
Ctrl-x /
in insert mode closes the open tag. Press again to close outer tag.
In the following table:
^
is the cursor position<C-x>
isCtrl+x
Text | Command | result |
---|---|---|
<p>^ |
<C-x> / |
<p></p>^ |
p^ |
<C-x> Space |
<p>^</p> |
div^ |
<C-x> Enter |
<div>\n^\n</div> |
^ |
<C-x> @ |
Stylesheet link tag |
^ |
<C-x> $ |
Script tag |
user.name^ |
<C-x> + |
<%= user.name %> |
:Toc
displays a table of contents view for your document in a new Quickfix window
Enter a snippet, followed by <Tab>
. Based on file types.
- `html5 generates an html5 skeleton
- 'html5t` generates a simplified HTML5 skeleton
ijs
generatesscript
blocks for inline JSimage
generates image tag with altcsslink
generates alink
tag for CSSjqueryref
generates a call to load jQuery from CDNjslink
generates link to call external JStextfield
generateslabel
andinput type="text"
textfieldbr
generateslabel
andinput type="text"
with a<br>
betweentextarea
generateslabel
andtextarea
textareabr
generateslabel
andtextarea
with a<br>
betweenemailfield
generateslabel
andinput type="email"
emailfieldbr
generateslabel
andinput type="email"
with a<br>
betweenselect
generateslabel
andselect
and a default<option>
selectbr
generateslabel
andselect
with a<br>
between, with a default<option>
betweennumber
generateslabel
andinput type="number"
numberbr
generateslabel
andinput type="number"
with a<br>
betweencheckbox
generateslabel
andinput type="checkbox"
checkboxbr
generateslabel
andinput type="checkbox"
with a<br>
betweenradio
generateslabel
andinput type="radio"
radiobr
generateslabel
andinput type="radio"
with a<br>
betweenlorem
drops in some lorem ipsum text
gruntfile
creates skeleton for Gruntfilesgtask
creates skeleton for a taskgnpm
generatesgrunt.loadNPMTasks
ginitconfig
generates the initConfig code skeletongconfig
generates thegrunt.config
modular style of configgll
generatesgrunt.log.writeln
gw
generatesgrunt.warn
gcg
generatesgrunt.config.get
object
generates skeleton for object literalobjectkey
generates the skeleton for an object as a keyanon
generates anonymous functionlisten
generates.addEventListener
keyval
generates a sinple key: value snippetdce
isdocument.createElement
dgt
isdocument.getElementsByTagName
dgi
is 'document.getElementById`- 'ac
is
appendChild` fo
is a simple for loopprompt
is a prompt boxnumber
is theNumber
functiontof
istoFixed
dw
isdocument.write
dw"
isdocument.write("")
todo
puts in a TODO with datestampnote
puts in a NOTE with datestampfixme
puts in a FIXME with datestamp
Supported in Ruby, Markdown, JavaScript
todo
puts in a TODO with datestampnote
puts in a NOTE with datestampfixme
puts in a FIXME with datestamp
NORMAL
is the default mode, for navigation, reviewing, and editing documents.VISUAL
is where you use the keyboard to select characters to cut or copyVISUAL LINE
is where you use the keyboard to select lines to cut or copyINSERT
is where you type text. In Insert mode, Vim behaves like other editors
Multiple options exist because different keyboards and interfaces exist
ESC
returns to Normal modeCTRL-C
returns to Normal modeCTRL-[
returns to Normal mode
In addition, in this setup, these custom bindings are active:
jk
in INSERT mode will exit INSERT mode and return to NORMAL mode.jj
in INSERT mode will save the file and then exit INSERT mode and return to NORMAL mode.
:q
closes the current buffer if it's saved and closes Vim if it's the last buffer
:qa
closes all buffers that are saved and closes Vim
:q!
closes the current buffer, discarding unsaved changes, and closes Vim if it's the last buffer
:qa!
closes all buffers, discarding unsaved changes, and closes Vim
:wq
saves the current buffer, closes it, and closes Vim if it's the last buffer
:wqa
saves all open buffers, closes them, and closes Vim
h
move one character leftj
move one row downk
move one row upl
move one character rightw
move to beginning of next wordb
move to previous beginning of worde
move to end of wordW
move to beginning of next word after a whitespaceB
move to beginning of previous word before a whitespaceE
move to end of word before a whitespace
gg
move to first lineG
move to last linenG
move to n'th line of file (n is a number; 12G moves to line 12):n<Enter>
move to n'th line of file (n is a number;:12<Enter>
moves to line 12)0
move to beginning of line^
move to first character of line$
move to end of lineCtrl-D
move half-page downCtrl-U
move half-page upCtrl-B
page upCtrl-F
page downH
move to top of screenM
move to middle of screenL
move to bottom of screenz.
scroll the line with the cursor to the center of the screenzt
scroll the line with the cursor to the topzb
scroll the line with the cursor to the bottom
x
cuts the character under the cursordd
cuts the lineyy
copies the line (yank line)p
pastes after the cursorP
pastes in front of the cursoryyp
duplicates the current line (yank line, paste after cursor)
i
enters Insert mode in front of cursora
enters Insert mode after the cursor (appends)I
enters Insert mode at the start of the lineA
enters Insert mode after the last character of the line (append line)o
creates a new line below and enters Insert modeO
creates a new line above and enters Insert mode
diw
deletes inner word. Place cursor on word and activate.ciw
changes inner word, removing word under cursor and placing you in Insert modecit
changes text in an HTML tag, removing the contents between the tags and placing you in Insert modeci"
changes text between quotes, removing the contents between the quotes and placing you in Insert mode