vim

12
a Serious Text Editor Juri Timošin

Upload: juri-timosin

Post on 07-Jul-2015

7.561 views

Category:

Technology


0 download

DESCRIPTION

Vim introduction and basic features.

TRANSCRIPT

Page 1: Vim

a Serious Text Editor

Juri Timošin

Page 2: Vim

whoami

● Infrastructure engineer

● 8 years of text editing

● 3 year vim “guru”● Ruby fan

Page 3: Vim

I've been using vi and vim also for some 20 years and I'm still learning new things.

Anonymous @Stackoverflow

Page 4: Vim

Learn Vim?! What for?

● Learn once, use everywhere● Lightweight● Fast (even with huge files)● Edit zip files● Lifelong● Vim is everywhere

○ Gmail, G+ / Facebook○ Google Rss Readers○ Firefox / Chrome (vimperator / vimium)○ Touchscreens! (WAT!?)

Page 5: Vim

Learn Vim?! What for?

● Learn once, use everywhere● Lightweight● Fast (even with huge files)● Lifelong● Home row friendly● Vim is everywhere

○ Gmail, G+ / Facebook○ Google Rss Readers○ Firefox / Chrome (vimperator / vimium)○ Touchscreens! (WAT!?)○ Even Your Kitchen and Bookshelf

Page 6: Vim

Modes

Normal InsertVisual

Command Line

i

::

vEsc

Replace

R

insert

Page 7: Vim
Page 8: Vim

Basic Features

● h j k l● 0 ^ $ (home and end)● w e b W E B (word vs WORD)● f t F T (forward and back)● gg H M L G● d dd ( dd = act on line )● y yy ● p P● u● .

Page 9: Vim

Sprechen Sie Vim?

● d$● y2E● d2t,

● 2i● “ay2f3 (s/a/+/ - to act on system clipboard)

Page 10: Vim

Command Line

● :help [topic]● :!<shell command>● :%s/ddd/ttt/[gci]

Page 12: Vim