-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvimCheatSheet.tex
114 lines (98 loc) · 3.77 KB
/
vimCheatSheet.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
\documentclass[11pt,a4paper,oneside]{article}
\usepackage[margin=1.5cm,bottom=2cm]{geometry}
\usepackage[obeyspaces,hyphens]{url}
%\usepackage[anythingbreaks]{breakurl}
\setlength\parindent{0pt}
\setlength{\parskip}{0.5em}
\usepackage{fancyhdr}
\pagestyle{fancy}
\pagenumbering{gobble}
\usepackage[pdftex,
pdfauthor={Christopher Frantz},
pdfcreator={pdflatex},
hidelinks]
{hyperref}
\fancyhead[C]{{\LARGE \textbf{Vim Cheat Sheet}}}
\fancyfoot[R]{{\small \normalfont C.~Frantz (v0.4, September 2019)}}
\renewcommand{\familydefault}{\ttdefault}
% Shows current layout if \layout is called in document
\usepackage{layout}
\footskip=45pt
\begin{document}
%\layout
\begin{table}
\vspace{-0.3cm}
\begin{tabular}{p{5.5cm} l}
\multicolumn{2}{l}{\underline{Opening Files} (command line)} \\
%& \\
vi filename & Opens new or existing file \\
vi -r filename & Recover file from crashed session \\
vi + filename & Place cursor on last line of file \\
vi +n filename & Place cursor on line `n' of file \\
vi +/pat filename & Place cursor on line with first occurrence of `pat'tern \\
& \\[-1.5ex]
\multicolumn{2}{l}{\underline{Modes}} \\
%& \\
Esc & Switch to NORMAL mode \\
i (or I) & Switch to INSERT mode \\
R & Switch to REPLACE mode \\
v & Switch to VISUAL mode \\
%r & Replace individual character and switch back to COMMAND mode \\
& \\[-1.5ex]
\multicolumn{2}{l}{\underline{Closing Files} (NORMAL mode)} \\
%& \\
:w & Write the file to disk, but don't quit Vim \\
:w! & Write the file to disk (even if read-only), but don't quit Vim \\
:wq & Write the file to disk and quit Vim \\
:wq! & Write the file to disk, even if read-only and quit Vim\\
:q & Quit Vim (only if no changes) \\
:q! & Quit Vim, even if changes exist (changes are lost) -- panic cmd \\
& \\[-1.5ex]
\multicolumn{2}{l}{\underline{Navigating Files} (NORMAL mode)} \\
%& \\
h (Left Arrow) & Move 1 space backwards \\
j (Down Arrow) & Move down 1 line \\
k (Up Arrow) & Move up 1 line \\
l (Right Arrow) & Move 1 space forward \\
\^{} & Move to beginning of line \\
\$ & Move to end of line \\
A & Move to end of line, change to insert mode \\
w (`W' ignores punctuation) & Move cursor to start of next word or punctuation symbol \\
b (`B' ignores punctuation) & Move cursor to start of previous word or punctuation symbol \\
\% & Move to next matching '()', '{}', or '[]' \\
:n & Go to line number `n' in the file \\
gg & Go to first line in file \\
G & Go to last line in file \\
:set number (:set nu) & Display line numbers \\
& \\[-1.5ex]
\multicolumn{2}{l}{\underline{Editing} (NORMAL mode)} \\
%& \\
o & Add a line below cursor and switch to INSERT mode \\
x (or `Del' key) & Delete character \\
D & Delete (Cut) line from right of cursor to end of line \\
dd & Delete (Cut) entire line \\
u & Undo last edit or restore current line \\
yy & Yank (Copy) current line \\
yw & Yank (Copy) individual word \\
p & Put yanked (Paste) text before the cursor \\
& \\[-1.5ex]
\multicolumn{2}{l}{\underline{Searching} (NORMAL mode)} \\
%& \\
/pattern & Search for `pattern' in the file (forward search) \\
?pattern & Search for `pattern' in the file (backward search) \\
n & Find next occurrence of pattern (forward search) \\
N & Find previous occurrence of pattern (backward search) \\
& \\[-1.5ex]
\multicolumn{2}{l}{\underline{Find \& Replace} (NORMAL mode)} \\
%& \\
:\%s/foo/bar/g & Find `foo' and replace with `bar' across all lines \\
:s/foo/bar/g & Find `foo' and replace with `bar' in current line \\
& \\[-1.5ex]
\multicolumn{2}{l}{\underline{Selecting text} (NORMAL or VISUAL mode)} \\
%& \\
v & Activates selection of text by character (visual mode) \\
V & Activates selection of text by lines (visual mode) \\
Ctrl-v & Activates selection of text by blocks (columns and characters) \\
\end{tabular}
\end{table}
\end{document}