כל הכלים
חינם

מדריך עיון של Vim ניתן לחיפוש ולהדפסה — מצבים, תנועות, עריכה, חיפוש והחלפה, חלונות, מאגרים ו-registers. חינם.

Modes

9
Esc
Return to Normal mode
i / a
Insert before / after the cursor
I / A
Insert at start / end of the line
o / O
Open a new line below / above
v
Visual mode (character selection)
V
Visual line mode
Ctrl-v
Visual block mode (columns)
R
Replace mode (overtype)
:
Command-line (Ex) mode

Motions

10
h j k l
Left, down, up, right
w / b
Forward / back one word
e / ge
End of next / previous word
0 / ^ / $
Line start / first non-blank / line end
gg / G
First line / last line
42G / :42
Jump to line 42
{ / }
Previous / next paragraph
%
Jump to matching bracket
f x / t x
Move to / before next x on the line
Ctrl-d / Ctrl-u
Scroll half page down / up

Editing operators

11
x / X
Delete char under / before cursor
dd / D
Delete line / to end of line
dw / diw
Delete word / inner word
cc / C
Change line / to end of line
ciw / ci"
Change inner word / inside quotes
yy / yw
Yank (copy) line / word
p / P
Paste after / before the cursor
r x / ~
Replace one char / toggle case
u / Ctrl-r
Undo / redo
.
Repeat the last change
>> / <<
Indent / unindent the line

Visual mode

9
v / V
Start character / line selection
Ctrl-v
Start block (column) selection
o
Jump to the other end of the selection
d / y
Delete / yank the selection
c
Change the selection
> / <
Indent / unindent the selection
gu / gU
Lowercase / uppercase the selection
gv
Reselect the last visual selection
I / A
Block insert before / append after (Ctrl-v)

Search & replace

9
/pattern
Search forward for pattern
?pattern
Search backward for pattern
n / N
Next / previous match
* / #
Search word under cursor fwd / back
:%s/old/new/g
Replace all in the file
:%s/old/new/gc
Replace all with confirmation
:s/old/new/g
Replace all on the current line
:%s/\<word\>/x/g
Replace whole words only
:noh
Clear search highlighting

Windows & tabs

8
:sp / :split
Horizontal split
:vsp / :vsplit
Vertical split
Ctrl-w h/j/k/l
Move to the split in that direction
Ctrl-w w
Cycle to the next split
Ctrl-w q / c
Close the current split
Ctrl-w o
Close all other splits
Ctrl-w =
Equalize split sizes
:tabnew / gt / gT
New tab / next / previous tab

Buffers & files

9
:e file
Open / edit a file
:w / :w file
Save / save as
:wq / :x / ZZ
Save and quit
:q / :q!
Quit / quit discarding changes
:ls / :buffers
List open buffers
:b name / :bN
Switch to a buffer by name / number
:bn / :bp
Next / previous buffer
:bd
Delete (close) a buffer
:wa / :qa
Write all / quit all

Registers & marks

8
"ayy
Yank line into register a
"ap
Paste from register a
"+y / "+p
Yank to / paste from system clipboard
:reg
Show register contents
ma
Set mark a at the cursor
`a / 'a
Jump to mark a (exact / line)
``
Jump back to the previous position
:marks
List all marks

Macros

7
qa
Start recording into register a
q
Stop recording
@a
Play back macro a
@@
Repeat the last played macro
5@a
Play macro a five times
:%normal @a
Run macro a on every line
"ap → edit → "ay$
Paste, edit, then re-yank a macro to change it

אף רשומה אינה תואמת ל-„:q”.


אודות דף עזר Vim

דף הרמאה זה ל-Vim ממפה את העורך לפי מושגים: מצבים (modes), תנועות (motions), אופרטורי עריכה, מצב חזותי (visual), חיפוש והחלפה, חלונות וכרטיסיות, מאגרים (buffers) וקבצים, רגיסטרים וסימניות (marks), ומאקרו. כל שורה היא הקשה על מקש או פקודה עם תיאור בן שורה אחת של מה שהיא עושה.

Vim מתגמל זיכרון שרירי, והדרך המהירה ביותר לבנות אותו היא שהתנועה או האופרטור הנכונים יהיו מולכם ברגע שאתם זקוקים להם. הדף שומר על החלקים המרכיבים — אופרטורים, תנועות, מונים (counts) — מקובצים כך שהדקדוק של Vim נשאר גלוי במקום להיזכר הקשה-הקשה.

הוא חינמי ופועל כולו בצד הלקוח: סננו כל הקשה בזמן אמת עם תיבת החיפוש, קפצו בין הקטעים מתוכן העניינים הדביק, לחצו כדי להעתיק פקודת Ex, והדפיסו את הדף — הדרך הקלאסית ללמוד Vim היא עם עותק מודפס ליד המקלדת.

כיצד להשתמש ב-דף עזר Vim

  1. התחילו בקטע המצבים (Modes) אם אתם חדשים, או קפצו ישר לתנועות ולאופרטורי עריכה.
  2. חפשו פעולה כמו delete,‏ replace או macro כדי לסנן את כל הדף.
  3. השתמשו בתוכן העניינים הדביק כדי לקפוץ לקטעים כמו רגיסטרים וסימניות או חלונות וכרטיסיות.
  4. לחצו על פקודה או על סמל ההעתקה שלה כדי להעתיק פקודות Ex כמו תבניות חיפוש-והחלפה.
  5. הדפיסו את הדף ושמרו אותו ליד המקלדת עד שהתנועות יהפכו לזיכרון שרירי.

שאלות נפוצות

תשעה קטעים: מצבים, תנועות, אופרטורי עריכה, מצב חזותי, חיפוש והחלפה, חלונות וכרטיסיות, מאגרים וקבצים, רגיסטרים וסימניות, ומאקרו — כל אוצר המילים העובד של העורך.

כן. הדף מכסה את התנהגות הליבה של Vim — מצבים, תנועות, אופרטורים, רגיסטרים, מאקרו — שזהה ב-Neovim, כך שהכול חל בלי קשר לגרסה שאתם מריצים.

קראו קודם את קטע המצבים כדי להבין מצב רגיל, הכנסה וחזותי, ולאחר מכן למדו כמה תנועות ואופרטורים. מכיוון שפקודות Vim מורכבות זו מזו, אוצר מילים קטן כבר מכסה את רוב העריכה.

כן. כפתור ההדפסה משמיט את סרגל החיפוש והניווט ומפיק רק את ההקשות והתיאורים — דף Vim מודפס עדיין הדרך הקלאסית ללמוד.

כן, לגמרי חינם, ניתן לחיפוש בדפדפן שלכם ולהדפסה ללא כל חשבון.

שתף זאת

חיפושים פופולריים
vim cheat sheet vim commands list vim shortcuts vim search and replace vim motions reference vim visual mode commands vim macros how to quit vim
צריך עזרה?
נתקלת בבעיה בכלי הזה? ספר לצוות שלנו.
דיווח על בעיה

הוסיפו כלי חינמי זה לאתר שלכם — העתיקו והדביקו את הקוד שלהלן.