Δωρεάν μετατροπέας
Εντολές Vim Φύλλο εξαπάτησης
Ολοκληρωμένο φύλλο εξαπάτησης εντολών Vim. Αναζητήστε 80+ βασικές εντολές Vim με παραδείγματα, περιγραφές και αντίγραφο με ένα κλικ.
i
Enter Insert mode before the cursor
Παράδειγμα:
iI
Enter Insert mode at the beginning of the line
Παράδειγμα:
Ia
Enter Insert mode after the cursor
Παράδειγμα:
aA
Enter Insert mode at the end of the line
Παράδειγμα:
Ao
Open a new line below and enter Insert mode
Παράδειγμα:
oO
Open a new line above and enter Insert mode
Παράδειγμα:
Ov
Enter Visual mode (character selection)
Παράδειγμα:
vV
Enter Visual Line mode (line selection)
Παράδειγμα:
VCtrl+v
Enter Visual Block mode (column selection)
Παράδειγμα:
Ctrl+v:
Enter Command-line mode
Παράδειγμα:
:wEsc
Return to Normal mode from any mode
Παράδειγμα:
EscR
Enter Replace mode (overwrite characters)
Παράδειγμα:
Rh
Move cursor left
Παράδειγμα:
5hj
Move cursor down
Παράδειγμα:
10jk
Move cursor up
Παράδειγμα:
10kl
Move cursor right
Παράδειγμα:
5lw
Move to the start of the next word
Παράδειγμα:
3wb
Move to the start of the previous word
Παράδειγμα:
3be
Move to the end of the current word
Παράδειγμα:
2e0
Move to the beginning of the line
Παράδειγμα:
0^
Move to the first non-blank character of the line
Παράδειγμα:
^$
Move to the end of the line
Παράδειγμα:
$gg
Move to the first line of the file
Παράδειγμα:
ggG
Move to the last line of the file
Παράδειγμα:
G:N
Jump to line number N
Παράδειγμα:
:42Ctrl+f
Scroll forward (down) one screen
Παράδειγμα:
Ctrl+fCtrl+b
Scroll backward (up) one screen
Παράδειγμα:
Ctrl+bCtrl+d
Scroll down half a screen
Παράδειγμα:
Ctrl+dCtrl+u
Scroll up half a screen
Παράδειγμα:
Ctrl+uH
Move cursor to the top of the screen
Παράδειγμα:
HM
Move cursor to the middle of the screen
Παράδειγμα:
ML
Move cursor to the bottom of the screen
Παράδειγμα:
L%
Jump to matching bracket, parenthesis, or brace
Παράδειγμα:
%x
Delete the character under the cursor
Παράδειγμα:
xdd
Delete (cut) the current line
Παράδειγμα:
dddw
Delete from cursor to the end of the word
Παράδειγμα:
dwd$
Delete from cursor to the end of the line
Παράδειγμα:
d$D
Delete from cursor to end of line (same as d$)
Παράδειγμα:
Dyy
Yank (copy) the current line
Παράδειγμα:
yyyw
Yank (copy) from cursor to end of word
Παράδειγμα:
ywp
Paste after the cursor
Παράδειγμα:
pP
Paste before the cursor
Παράδειγμα:
Pu
Undo the last change
Παράδειγμα:
uCtrl+r
Redo the last undone change
Παράδειγμα:
Ctrl+rcc
Change (delete and enter insert mode) the current line
Παράδειγμα:
cccw
Change from cursor to end of word
Παράδειγμα:
cwc$
Change from cursor to end of line
Παράδειγμα:
c$.
Repeat the last change
Παράδειγμα:
.>>
Indent the current line one level to the right
Παράδειγμα:
>><<
Unindent the current line one level to the left
Παράδειγμα:
<<==
Auto-indent the current line
Παράδειγμα:
==J
Join the current line with the line below
Παράδειγμα:
J~
Toggle case of character under cursor
Παράδειγμα:
~r{char}
Replace the character under the cursor with {char}
Παράδειγμα:
ra/{pattern}
Search forward for pattern
Παράδειγμα:
/foo?{pattern}
Search backward for pattern
Παράδειγμα:
?foon
Repeat the last search in the same direction
Παράδειγμα:
nN
Repeat the last search in the opposite direction
Παράδειγμα:
N*
Search forward for the word under the cursor
Παράδειγμα:
*#
Search backward for the word under the cursor
Παράδειγμα:
#:s/old/new/g
Replace all occurrences of old with new on the current line
Παράδειγμα:
:s/foo/bar/g:%s/old/new/g
Replace all occurrences of old with new in the whole file
Παράδειγμα:
:%s/foo/bar/g:%s/old/new/gc
Replace all with confirmation prompts
Παράδειγμα:
:%s/foo/bar/gc:noh
Clear the search highlight
Παράδειγμα:
:noh:w
Save the current file
Παράδειγμα:
:w:w filename
Save the current buffer as a new filename
Παράδειγμα:
:w newfile.txt:q
Quit (close the window)
Παράδειγμα:
:q:wq
Save and quit
Παράδειγμα:
:wq:q!
Quit without saving (force quit)
Παράδειγμα:
:q!:x
Save and quit (only writes if changes were made)
Παράδειγμα:
:x:e filename
Open a file for editing
Παράδειγμα:
:e README.md:sp
Split the window horizontally
Παράδειγμα:
:sp file.txt:vsp
Split the window vertically
Παράδειγμα:
:vsp file.txtCtrl+w+w
Switch focus to the next split window
Παράδειγμα:
Ctrl+w wCtrl+w+h/j/k/l
Move focus to the window in the given direction
Παράδειγμα:
Ctrl+w l:close
Close the current window split
Παράδειγμα:
:close:only
Close all windows except the current one
Παράδειγμα:
:only:bn
Switch to the next buffer
Παράδειγμα:
:bn:bp
Switch to the previous buffer
Παράδειγμα:
:bp:bd
Delete (close) the current buffer
Παράδειγμα:
:bd:ls
List all open buffers
Παράδειγμα:
:ls:b N
Switch to buffer number N
Παράδειγμα:
:b 2:tabnew
Open a new tab
Παράδειγμα:
:tabnew file.txt:tabn
Switch to the next tab
Παράδειγμα:
:tabn:tabp
Switch to the previous tab
Παράδειγμα:
:tabp:tabclose
Close the current tab
Παράδειγμα:
:tabclosegt
Go to the next tab
Παράδειγμα:
gtgT
Go to the previous tab
Παράδειγμα:
gTq{a-z}
Start recording a macro into register {a-z}
Παράδειγμα:
qqq (stop)
Stop recording the current macro
Παράδειγμα:
q@{a-z}
Execute the macro stored in register {a-z}
Παράδειγμα:
@q@@
Repeat the last executed macro
Παράδειγμα:
@@N@{a-z}
Execute macro N times
Παράδειγμα:
5@q:reg
Show the contents of all registers
Παράδειγμα:
:regv then d
Select text in Visual mode then delete it
Παράδειγμα:
vwdv then y
Select text in Visual mode then yank (copy) it
Παράδειγμα:
vwyv then c
Select text in Visual mode then change it
Παράδειγμα:
vwcv then >
Indent selected text to the right
Παράδειγμα:
vip>vip
Select the current paragraph in Visual mode
Παράδειγμα:
vipviw
Select the current word in Visual mode
Παράδειγμα:
viwvis
Select the current sentence in Visual mode
Παράδειγμα:
visV then J
Select lines in Visual Line mode then join them
Παράδειγμα:
VjJ:set number
Show line numbers
Παράδειγμα:
:set number:set nonumber
Hide line numbers
Παράδειγμα:
:set nonumber:syntax on
Enable syntax highlighting
Παράδειγμα:
:syntax on:colorscheme
Change the color scheme
Παράδειγμα:
:colorscheme desert:help {topic}
Open Vim help for a topic
Παράδειγμα:
:help :wm{a-z}
Set a mark at the current cursor position
Παράδειγμα:
ma'{a-z}
Jump to the line of a mark
Παράδειγμα:
'a`{a-z}
Jump to the exact position of a mark
Παράδειγμα:
`a:set paste
Enable paste mode to avoid auto-indent issues
Παράδειγμα:
:set paste:set ignorecase
Make searches case-insensitive
Παράδειγμα:
:set ignorecase:set hlsearch
Highlight all search matches
Παράδειγμα:
:set hlsearchga
Show the ASCII value of the character under the cursor
Παράδειγμα:
gazz
Center the current line on the screen
Παράδειγμα:
zzCtrl+g
Show the current file name and cursor position
Παράδειγμα:
Ctrl+gΣχετικά Εργαλεία
Δείτε όλα τα εργαλείαΕντολές Git Φύλλο εξαπάτησης
Ολοκληρωμένο φύλλο εξαπάτησης εντολών Git. Αναζητήστε 80+ βασικές εντολές Git με παραδείγματα, περιγραφές και αντίγραφο με ένα κλικ.
Εντολές Docker Φύλλο εξαπάτησης
Ολοκληρωμένο φύλλο εξαπάτησης εντολών Docker. Αναζητήστε 70+ βασικές εντολές Docker με παραδείγματα, περιγραφές και αντίγραφο με ένα κλικ.
Linux / Bash Φύλλο εξαπάτησης εντολών
Ολοκληρωμένο φύλλο εξαπάτησης εντολών Linux και Bash. Αναζητήστε 80+ βασικές εντολές με παραδείγματα, περιγραφές και αντίγραφο με ένα κλικ.
SQL Formatter & Καλλωπιστικό
Μορφοποιήστε, ωραιοποιήστε και καθαρίστε τα ερωτήματα SQL αμέσως στο πρόγραμμα περιήγησής σας. Δεν απαιτείται μεταφόρτωση — εντελώς ιδιωτική και δωρεάν.