Visits

[+/-]
Today:
Yesterday:
Day before yesterday:
377
1
1006

-1005
This week:
Last week:
Week before last week:
1384
8214
7542

+672

Last month:
Month before last month:
7366
34182
33848

+334

Visitor Data

Proxy
38.107.179.213
United States
IP ADDRESS
38.107.179.213
-
Location
United States
-
Browser
Unknown Browser
-
Operating System
Unknown Operating System


   
Add to: JBookmarks Add to: Bookmarks.cc Add to: Digg Add to: Reddit Add to: Upchuckr Add to: StumbleUpon Add to: Slashdot Add to: Blogmarks Add to: Technorati Add to: Newsvine Add to: Blinkbits Add to: Smarking Add to: Spurl Add to: Google Information
VI / Vim Commands
Command mode ESC

dd delete
u undelete
y yank (copy to buffer)
p/P p before cursor/P after cursor

Ctl-g show current line number
shft-G end of file
n shft-G move to line n

/stuff/ search
n repeat in same direction
N repeat in opposite direction
/return repeat seach forward
?return repeat seach backward

"dyy Yank current line to buffer d
"a7yy Yank next 7 lines to buffer a
or
:1,7ya a Yank [ya] lines 1,7 to buffer a
:1,7ya b Yank [ya] lines 1,7 to buffer b

:5 pu b Put [pu] buffer b after line 5

"dP Put the content of buffer d before cursor
"ap Put the contents of buffer a after cursor

:1,4 w! file2 Write lines 1,4 to file2
:1,3

:set nu Display line numbers
:set nonum Turns off display

:e Edit a file in a new buffer

vim
:split
:split
:sp
:split new

ctl-w To move between windows
ctl-w+
ctl-w- To change size
ctl+wv Split windows vertically
ctl-wq Close window

:only To view only 1 window

vim dictionary - put the following command in ~/.vimrc

set dictionary+=/usr/share/dict/words
set thesaurus+=/usr/share/dict/words

Now, after you type a word and to
go back in the listing

butter