VIM: The Basic Part Caleb Jhones

8 September 2016

A bit of history

A bit of history

• Begun by Bram Moolenaar in the late 80s as a port of the

Stevie editor (on the 80s Amiga computers) • Publicly released in 1991, and has been continually updated

ever since • ’Vim’ originally stood for ’Vi IMitation’. This was later

changed to ’Vi IMproved’ when vim’s functionality surpassed that of its predicessor

Why use vim?

Why use vim? • Because it’s the best plaintext editor available!

Why use vim? • Because it’s the best plaintext editor available! (please don’t

hurt me)

Why use vim? • Because it’s the best plaintext editor available! (please don’t

hurt me) (emacs users, I’m looking at you)

Why use vim? • Because it’s the best plaintext editor available! (please don’t

hurt me) (emacs users, I’m looking at you) • In reality, either will work very well. I prefer vim because:

Why use vim? • Because it’s the best plaintext editor available! (please don’t

hurt me) (emacs users, I’m looking at you) • In reality, either will work very well. I prefer vim because: • All commonly-used commands are single (or sometimes two) keystrokes

Why use vim? • Because it’s the best plaintext editor available! (please don’t

hurt me) (emacs users, I’m looking at you) • In reality, either will work very well. I prefer vim because: • All commonly-used commands are single (or sometimes two) keystrokes • If you’re using a standard keyboard layout, the control key can be inconvenient to reach

Why use vim? • Because it’s the best plaintext editor available! (please don’t

hurt me) (emacs users, I’m looking at you) • In reality, either will work very well. I prefer vim because: • All commonly-used commands are single (or sometimes two) keystrokes • If you’re using a standard keyboard layout, the control key can be inconvenient to reach • Modal editing (more on this later)

Why use vim? • Because it’s the best plaintext editor available! (please don’t

hurt me) (emacs users, I’m looking at you) • In reality, either will work very well. I prefer vim because: • All commonly-used commands are single (or sometimes two) keystrokes • If you’re using a standard keyboard layout, the control key can be inconvenient to reach • Modal editing (more on this later) • Mainly, it’s what I started learning, and have grown to like

Why use vim? • Because it’s the best plaintext editor available! (please don’t

hurt me) (emacs users, I’m looking at you) • In reality, either will work very well. I prefer vim because: • All commonly-used commands are single (or sometimes two) keystrokes • If you’re using a standard keyboard layout, the control key can be inconvenient to reach • Modal editing (more on this later) • Mainly, it’s what I started learning, and have grown to like • Brace yourselves.... if you’ve never used vim before, what

follows will be like a fire-hose. I’m partly intending this to be a reference for you all, so don’t worry about absorbing everything right now

Modal editing

Modal editing • In more GUI-dependent text editors, you need to use the

mouse very often (for moving the cursor, selecting file menus, &c). It also depends on things like arrow keys and modifier keys (Shift, Control, Alt, &c)

Modal editing • In more GUI-dependent text editors, you need to use the

mouse very often (for moving the cursor, selecting file menus, &c). It also depends on things like arrow keys and modifier keys (Shift, Control, Alt, &c) • This means you need to move your hands away from the

home row, which is slow and annoying

Modal editing • In more GUI-dependent text editors, you need to use the

mouse very often (for moving the cursor, selecting file menus, &c). It also depends on things like arrow keys and modifier keys (Shift, Control, Alt, &c) • This means you need to move your hands away from the

home row, which is slow and annoying • Vim removes these problems by being driven completely using

a keyboard (rather than a keyboard and mouse), and making only sparing use of modifier keys

Modal editing • In more GUI-dependent text editors, you need to use the

mouse very often (for moving the cursor, selecting file menus, &c). It also depends on things like arrow keys and modifier keys (Shift, Control, Alt, &c) • This means you need to move your hands away from the

home row, which is slow and annoying • Vim removes these problems by being driven completely using

a keyboard (rather than a keyboard and mouse), and making only sparing use of modifier keys • This is possible using modes. Each key on the keyboard does

something different in each mode, meaning you have many possible functions of each key, beyond simply typing that letter into a file

Modes

Modes

• Normal (sometimes called command) mode: • No text in the bottom left corner of your console window • Used to get to other modes, for cursor movement, copy/pasting, saving, etc... • This is where you begin when you open a vim window • To return here from other modes, press the Esc key

Modes

• Insert mode: • Normal mode is great. But this is a text editor, and I want to type!

Modes

• Insert mode: • Normal mode is great. But this is a text editor, and I want to type! • From normal mode, press i to get to insert mode • You are now able to edit files! Type away to your heart’s content!

Modes • Visual mode: • From normal mode, press v • You can now select text one character or (partial) line at a time using your cursor

Modes • Visual mode: • From normal mode, press v • You can now select text one character or (partial) line at a time using your cursor • Visual line mode: • From normal mode, press V (captial V) • Now you can select text one (whole) line at a time

Modes • Visual mode: • From normal mode, press v • You can now select text one character or (partial) line at a time using your cursor • Visual line mode: • From normal mode, press V (captial V) • Now you can select text one (whole) line at a time • Visual block mode: • From normal mode, press Ctrl+v • Now select using h, j, k, and l in blocks (hence the name) • Using Shift+i, you can insert text at the beginning of your selection (see example)

Basic commands, from normal mode

Basic commands, from normal mode

• h, j, k, and l move the cursor left, down, up, and right,

respectively

Basic commands, from normal mode

• h, j, k, and l move the cursor left, down, up, and right,

respectively • i puts you into insert mode, right where the cursor is

Basic commands, from normal mode

• h, j, k, and l move the cursor left, down, up, and right,

respectively • i puts you into insert mode, right where the cursor is • a puts you into insert mode, one character to the right of the

cursor • A puts you into insert mode at the end of the current line

Basic commands, from normal mode

• h, j, k, and l move the cursor left, down, up, and right,

respectively • i puts you into insert mode, right where the cursor is • a puts you into insert mode, one character to the right of the

cursor • A puts you into insert mode at the end of the current line • o inserts a line below the current line, and puts you into insert

mode on that line • O (captial O) is the same as lower-case o, but a line above

Basic commands, from normal mode

• dd will delete an entire line, and yy will copy an entire line

(whichever line the cursor is on) • x deletes the character under the cursor. X deletes the

character before the cursor

Basic commands, from normal mode

• dd will delete an entire line, and yy will copy an entire line

(whichever line the cursor is on) • x deletes the character under the cursor. X deletes the

character before the cursor • p will paste whatever is in the buffer currently • How do you put something into the paste buffer? With x, dd, or yy! These also function as what you would think of as cut and copy

Basic commands, from normal mode

• u can be used to undo, and Ctrl+r to redo

Basic commands, from normal mode

• u can be used to undo, and Ctrl+r to redo • w moves the cursor forward by one word at a time, and b

moves it back

Basic commands, from normal mode

• u can be used to undo, and Ctrl+r to redo • w moves the cursor forward by one word at a time, and b

moves it back • gg moves the cursor to the top of the file • G moves the cursor to the bottom of the file

Saving, loading, quitting

Saving, loading, quitting • So we’re finally done with editing our file, and we want to

save. Or maybe we decided we didn’t need the edits we made afterall

Saving, loading, quitting • So we’re finally done with editing our file, and we want to

save. Or maybe we decided we didn’t need the edits we made afterall • Type :w from normal mode to save the file (you can do this

at any point in the edit process) • :q will exit vim, without saving. If you have unsaved edits, it

will warn you of this and not exit • :q! exits silently and without saving. Only use this if you

really don’t want your file changes! • Lastly, these can be strung together to save and quit, i.e.

:wq. There is also :x, which does the same thing

Other cool tricks

Other cool tricks

• Use gg=G to retab an entire file (as vim sees appropriate! Not

always correct, sadly) • You can also just use == to do a single line

Other cool tricks

• Use gg=G to retab an entire file (as vim sees appropriate! Not

always correct, sadly) • You can also just use == to do a single line • You can auto-complete any word that vim has already seen in

the file by using Ctrl+p

Other cool tricks

• Use gg=G to retab an entire file (as vim sees appropriate! Not

always correct, sadly) • You can also just use == to do a single line • You can auto-complete any word that vim has already seen in

the file by using Ctrl+p • You can also run shell commands straight from vim

(particularly useful for things like make). Type :! and it will be run in your shell

Now for Jack

VIM: The Basic Part - GitHub

Why use vim? • Because it's the best plaintext editor available! .... copy/pasting, saving, etc... • This is where you begin when you open a vim window. • To return ...

171KB Sizes 3 Downloads 310 Views

Recommend Documents

VIM: The Awesome Part - GitHub
Page 1 ... d, x will put what was deleted into the paste register. This means you can swap things ... I invite you to do a web search to find the ones you like best!

Epic Vim Tutorial - GitHub
Jan 19, 2012 - Move back to the start of the first email address in the file. 7. Press Ctrl+v to enter visual block mode. 8. Using the arrow keys, select all email ...

Part 1 - GitHub
Apr 27, 2014 - Developing scalable applications with IBM MQ Light and ... Improving the sample application by separating the web-facing component from the.

Exercises part 1 - GitHub
This R Markdown document contains exercises to accompany the course “Data analysis and visualization using R”. This document contains the exercises ...

Hacking Vim
This has lead to him now owning the web-hosting company Devteam ... James Eaton-Lee works as a Consultant specializing in Infrastructure Security and.

Arduino Basic Connections - GitHub
Multiplexing 8 potentiometers ............................................................................................................. 55. Connect 8 difital inputs via SPI .........................................................................

basic components of the interface - GitHub
Each tab is a separate coding challenge. Write code in the editor to solve the challenge and hit Submit Answer. If your code is correct, you will progress to the ...

Durgasoft SCJP Notes Part-1 - GitHub
Durgasoft SCJP Notes. Part-1 http://javabynataraj.blogspot.com 1 of 255. Page 2. http://javabynataraj.blogspot.com 2 of 255.

vi / vim graphical cheat sheet
F "back" fwd. G eof/ goto ln Hscreen top. J join lines. K help. L screen bottom ... version at http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html.

Frtvz) R vim
Nov 23, 2015 - There will be a short meeting of Secondary School Science Department Heads,. President and Vice President of Secondary Science Teachers Club and Public Elementary. School Cluster Science Key Teachers at 3:00 — 5:00 PM on November 24,

Durgasoft SCJP Notes Part-2 - GitHub
Durgasoft SCJP Notes. Part-2 http://javabynataraj.blogspot.com 1 of 401. Page 2. http://javabynataraj.blogspot.com 2 of 401. Page 3 ...

practical vim pdf download
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. practical vim pdf ...

Queens Community District 14 Basemap - Part 1 - GitHub
UNNAMED ST. QUENTIN ST. PEMBROKE ST. MARSHALL RD. AVIATION RD. MARINE PKWY BRIDGE. UNNAMED ST. UNNAMEDST. SHO. REPKWY. BAYSIDEAV. BEACH 147 ST. BEACH 193 ST. RANGE RD. SEA BREEZEAV. EMMO. NS AV. BERGEN AV. HILLSIDEAV. AV WAV W. KINGS HIGHWAY. BEACH 1

What part of List do you not understand? - GitHub
scala.Equals. • private AbstractXXX hierarchy. • redundant inheritance paths. - linearization. Comments and Corrections: @tpolecat (Twitter and #scala)

Part-of-Speech Driven Cross-Lingual Pronoun Prediction with ... - GitHub
Most modern statistical machine translation ... of using discourse analysis for pronoun translation .... The best performing classes are ce, ils ..... Giza++ software.

Amazon part # price qty desc B00UTIFCVA 17.33 2 ... - GitHub
Amazon part # price qty desc. B00UTIFCVA. 17.33. 2. Signswise 600p/r Incremental Rotary Encoder Dc5-24v Wide Voltage Power Supply 6mm Shaft.

Read [PDF] SolidWorks 2014 Part I - Basic Tools Full Pages
SolidWorks 2014 Part I - Basic Tools Download at => https://pdfkulonline13e1.blogspot.com/1585038539 SolidWorks 2014 Part I - Basic Tools pdf download, SolidWorks 2014 Part I - Basic Tools audiobook download, SolidWorks 2014 Part I - Basic Tools

Part 10: Pediatric Basic and Advanced Life Support
However, 1 survey. (LOE 430) found that 39% to 66% of emergency medical ...... AED dose, but the degree of myocardial damage was not associated with any ...

Download [Epub] SolidWorks 2014 Part I - Basic Tools Full Pages
SolidWorks 2014 Part I - Basic Tools Download at => https://pdfkulonline13e1.blogspot.com/1585038539 SolidWorks 2014 Part I - Basic Tools pdf download, SolidWorks 2014 Part I - Basic Tools audiobook download, SolidWorks 2014 Part I - Basic Tools

Part 10: Pediatric Basic and Advanced Life Support
Oct 19, 2010 - Additional evidence shows that healthcare providers do not reliably determine ..... gen species, free radicals) are produced that may damage cell membranes ..... ventilations and chest compressions, is best for resuscitation.