Ücretsiz Dönüştürücü
Vim Komutları Kopya Kağıdı
Kapsamlı Vim komut hile sayfası. Örnekler, açıklamalar ve tek tıklamayla kopyayla 80'den fazla temel Vim komutunu arayın.
i
Enter Insert mode before the cursor
Örnek:
iI
Enter Insert mode at the beginning of the line
Örnek:
Ia
Enter Insert mode after the cursor
Örnek:
aA
Enter Insert mode at the end of the line
Örnek:
Ao
Open a new line below and enter Insert mode
Örnek:
oO
Open a new line above and enter Insert mode
Örnek:
Ov
Enter Visual mode (character selection)
Örnek:
vV
Enter Visual Line mode (line selection)
Örnek:
VCtrl+v
Enter Visual Block mode (column selection)
Örnek:
Ctrl+v:
Enter Command-line mode
Örnek:
:wEsc
Return to Normal mode from any mode
Örnek:
EscR
Enter Replace mode (overwrite characters)
Örnek:
Rh
Move cursor left
Örnek:
5hj
Move cursor down
Örnek:
10jk
Move cursor up
Örnek:
10kl
Move cursor right
Örnek:
5lw
Move to the start of the next word
Örnek:
3wb
Move to the start of the previous word
Örnek:
3be
Move to the end of the current word
Örnek:
2e0
Move to the beginning of the line
Örnek:
0^
Move to the first non-blank character of the line
Örnek:
^$
Move to the end of the line
Örnek:
$gg
Move to the first line of the file
Örnek:
ggG
Move to the last line of the file
Örnek:
G:N
Jump to line number N
Örnek:
:42Ctrl+f
Scroll forward (down) one screen
Örnek:
Ctrl+fCtrl+b
Scroll backward (up) one screen
Örnek:
Ctrl+bCtrl+d
Scroll down half a screen
Örnek:
Ctrl+dCtrl+u
Scroll up half a screen
Örnek:
Ctrl+uH
Move cursor to the top of the screen
Örnek:
HM
Move cursor to the middle of the screen
Örnek:
ML
Move cursor to the bottom of the screen
Örnek:
L%
Jump to matching bracket, parenthesis, or brace
Örnek:
%x
Delete the character under the cursor
Örnek:
xdd
Delete (cut) the current line
Örnek:
dddw
Delete from cursor to the end of the word
Örnek:
dwd$
Delete from cursor to the end of the line
Örnek:
d$D
Delete from cursor to end of line (same as d$)
Örnek:
Dyy
Yank (copy) the current line
Örnek:
yyyw
Yank (copy) from cursor to end of word
Örnek:
ywp
Paste after the cursor
Örnek:
pP
Paste before the cursor
Örnek:
Pu
Undo the last change
Örnek:
uCtrl+r
Redo the last undone change
Örnek:
Ctrl+rcc
Change (delete and enter insert mode) the current line
Örnek:
cccw
Change from cursor to end of word
Örnek:
cwc$
Change from cursor to end of line
Örnek:
c$.
Repeat the last change
Örnek:
.>>
Indent the current line one level to the right
Örnek:
>><<
Unindent the current line one level to the left
Örnek:
<<==
Auto-indent the current line
Örnek:
==J
Join the current line with the line below
Örnek:
J~
Toggle case of character under cursor
Örnek:
~r{char}
Replace the character under the cursor with {char}
Örnek:
ra/{pattern}
Search forward for pattern
Örnek:
/foo?{pattern}
Search backward for pattern
Örnek:
?foon
Repeat the last search in the same direction
Örnek:
nN
Repeat the last search in the opposite direction
Örnek:
N*
Search forward for the word under the cursor
Örnek:
*#
Search backward for the word under the cursor
Örnek:
#:s/old/new/g
Replace all occurrences of old with new on the current line
Örnek:
:s/foo/bar/g:%s/old/new/g
Replace all occurrences of old with new in the whole file
Örnek:
:%s/foo/bar/g:%s/old/new/gc
Replace all with confirmation prompts
Örnek:
:%s/foo/bar/gc:noh
Clear the search highlight
Örnek:
:noh:w
Save the current file
Örnek:
:w:w filename
Save the current buffer as a new filename
Örnek:
:w newfile.txt:q
Quit (close the window)
Örnek:
:q:wq
Save and quit
Örnek:
:wq:q!
Quit without saving (force quit)
Örnek:
:q!:x
Save and quit (only writes if changes were made)
Örnek:
:x:e filename
Open a file for editing
Örnek:
:e README.md:sp
Split the window horizontally
Örnek:
:sp file.txt:vsp
Split the window vertically
Örnek:
:vsp file.txtCtrl+w+w
Switch focus to the next split window
Örnek:
Ctrl+w wCtrl+w+h/j/k/l
Move focus to the window in the given direction
Örnek:
Ctrl+w l:close
Close the current window split
Örnek:
:close:only
Close all windows except the current one
Örnek:
:only:bn
Switch to the next buffer
Örnek:
:bn:bp
Switch to the previous buffer
Örnek:
:bp:bd
Delete (close) the current buffer
Örnek:
:bd:ls
List all open buffers
Örnek:
:ls:b N
Switch to buffer number N
Örnek:
:b 2:tabnew
Open a new tab
Örnek:
:tabnew file.txt:tabn
Switch to the next tab
Örnek:
:tabn:tabp
Switch to the previous tab
Örnek:
:tabp:tabclose
Close the current tab
Örnek:
:tabclosegt
Go to the next tab
Örnek:
gtgT
Go to the previous tab
Örnek:
gTq{a-z}
Start recording a macro into register {a-z}
Örnek:
qqq (stop)
Stop recording the current macro
Örnek:
q@{a-z}
Execute the macro stored in register {a-z}
Örnek:
@q@@
Repeat the last executed macro
Örnek:
@@N@{a-z}
Execute macro N times
Örnek:
5@q:reg
Show the contents of all registers
Örnek:
:regv then d
Select text in Visual mode then delete it
Örnek:
vwdv then y
Select text in Visual mode then yank (copy) it
Örnek:
vwyv then c
Select text in Visual mode then change it
Örnek:
vwcv then >
Indent selected text to the right
Örnek:
vip>vip
Select the current paragraph in Visual mode
Örnek:
vipviw
Select the current word in Visual mode
Örnek:
viwvis
Select the current sentence in Visual mode
Örnek:
visV then J
Select lines in Visual Line mode then join them
Örnek:
VjJ:set number
Show line numbers
Örnek:
:set number:set nonumber
Hide line numbers
Örnek:
:set nonumber:syntax on
Enable syntax highlighting
Örnek:
:syntax on:colorscheme
Change the color scheme
Örnek:
:colorscheme desert:help {topic}
Open Vim help for a topic
Örnek:
:help :wm{a-z}
Set a mark at the current cursor position
Örnek:
ma'{a-z}
Jump to the line of a mark
Örnek:
'a`{a-z}
Jump to the exact position of a mark
Örnek:
`a:set paste
Enable paste mode to avoid auto-indent issues
Örnek:
:set paste:set ignorecase
Make searches case-insensitive
Örnek:
:set ignorecase:set hlsearch
Highlight all search matches
Örnek:
:set hlsearchga
Show the ASCII value of the character under the cursor
Örnek:
gazz
Center the current line on the screen
Örnek:
zzCtrl+g
Show the current file name and cursor position
Örnek:
Ctrl+gİlgili Araçlar
Tüm araçları görüntüleGit Komutları Kopya Kağıdı
Kapsamlı Git komut hile sayfası. Örnekler, açıklamalar ve tek tıklamayla kopyayla 80'den fazla temel Git komutunu arayın.
Docker Komutları Kopya Kağıdı
Kapsamlı Docker komut hile sayfası. Örnekler, açıklamalar ve tek tıklamayla kopyayla 70'ten fazla temel Docker komutunu arayın.
Linux / Bash Komut Hile Sayfası
Kapsamlı Linux ve Bash komut hileleri sayfası. Örnekler, açıklamalar ve tek tıklamayla kopyayla 80'den fazla temel komutu arayın.
SQL Biçimlendirici & Güzelleştirici
SQL sorgularını tarayıcınızda anında biçimlendirin, güzelleştirin ve temizleyin. Yüklemeye gerek yok; tamamen özel ve ücretsiz.