Pulsuz çevirici
Vim əmrləri Fırıldaq vərəqi
Hərtərəfli Vim əmr fırıldaqçı vərəqi. Nümunələr, təsvirlər və bir klik surəti ilə 80+ əsas Vim əmrini axtarın.
i
Enter Insert mode before the cursor
Misal:
iI
Enter Insert mode at the beginning of the line
Misal:
Ia
Enter Insert mode after the cursor
Misal:
aA
Enter Insert mode at the end of the line
Misal:
Ao
Open a new line below and enter Insert mode
Misal:
oO
Open a new line above and enter Insert mode
Misal:
Ov
Enter Visual mode (character selection)
Misal:
vV
Enter Visual Line mode (line selection)
Misal:
VCtrl+v
Enter Visual Block mode (column selection)
Misal:
Ctrl+v:
Enter Command-line mode
Misal:
:wEsc
Return to Normal mode from any mode
Misal:
EscR
Enter Replace mode (overwrite characters)
Misal:
Rh
Move cursor left
Misal:
5hj
Move cursor down
Misal:
10jk
Move cursor up
Misal:
10kl
Move cursor right
Misal:
5lw
Move to the start of the next word
Misal:
3wb
Move to the start of the previous word
Misal:
3be
Move to the end of the current word
Misal:
2e0
Move to the beginning of the line
Misal:
0^
Move to the first non-blank character of the line
Misal:
^$
Move to the end of the line
Misal:
$gg
Move to the first line of the file
Misal:
ggG
Move to the last line of the file
Misal:
G:N
Jump to line number N
Misal:
:42Ctrl+f
Scroll forward (down) one screen
Misal:
Ctrl+fCtrl+b
Scroll backward (up) one screen
Misal:
Ctrl+bCtrl+d
Scroll down half a screen
Misal:
Ctrl+dCtrl+u
Scroll up half a screen
Misal:
Ctrl+uH
Move cursor to the top of the screen
Misal:
HM
Move cursor to the middle of the screen
Misal:
ML
Move cursor to the bottom of the screen
Misal:
L%
Jump to matching bracket, parenthesis, or brace
Misal:
%x
Delete the character under the cursor
Misal:
xdd
Delete (cut) the current line
Misal:
dddw
Delete from cursor to the end of the word
Misal:
dwd$
Delete from cursor to the end of the line
Misal:
d$D
Delete from cursor to end of line (same as d$)
Misal:
Dyy
Yank (copy) the current line
Misal:
yyyw
Yank (copy) from cursor to end of word
Misal:
ywp
Paste after the cursor
Misal:
pP
Paste before the cursor
Misal:
Pu
Undo the last change
Misal:
uCtrl+r
Redo the last undone change
Misal:
Ctrl+rcc
Change (delete and enter insert mode) the current line
Misal:
cccw
Change from cursor to end of word
Misal:
cwc$
Change from cursor to end of line
Misal:
c$.
Repeat the last change
Misal:
.>>
Indent the current line one level to the right
Misal:
>><<
Unindent the current line one level to the left
Misal:
<<==
Auto-indent the current line
Misal:
==J
Join the current line with the line below
Misal:
J~
Toggle case of character under cursor
Misal:
~r{char}
Replace the character under the cursor with {char}
Misal:
ra/{pattern}
Search forward for pattern
Misal:
/foo?{pattern}
Search backward for pattern
Misal:
?foon
Repeat the last search in the same direction
Misal:
nN
Repeat the last search in the opposite direction
Misal:
N*
Search forward for the word under the cursor
Misal:
*#
Search backward for the word under the cursor
Misal:
#:s/old/new/g
Replace all occurrences of old with new on the current line
Misal:
:s/foo/bar/g:%s/old/new/g
Replace all occurrences of old with new in the whole file
Misal:
:%s/foo/bar/g:%s/old/new/gc
Replace all with confirmation prompts
Misal:
:%s/foo/bar/gc:noh
Clear the search highlight
Misal:
:noh:w
Save the current file
Misal:
:w:w filename
Save the current buffer as a new filename
Misal:
:w newfile.txt:q
Quit (close the window)
Misal:
:q:wq
Save and quit
Misal:
:wq:q!
Quit without saving (force quit)
Misal:
:q!:x
Save and quit (only writes if changes were made)
Misal:
:x:e filename
Open a file for editing
Misal:
:e README.md:sp
Split the window horizontally
Misal:
:sp file.txt:vsp
Split the window vertically
Misal:
:vsp file.txtCtrl+w+w
Switch focus to the next split window
Misal:
Ctrl+w wCtrl+w+h/j/k/l
Move focus to the window in the given direction
Misal:
Ctrl+w l:close
Close the current window split
Misal:
:close:only
Close all windows except the current one
Misal:
:only:bn
Switch to the next buffer
Misal:
:bn:bp
Switch to the previous buffer
Misal:
:bp:bd
Delete (close) the current buffer
Misal:
:bd:ls
List all open buffers
Misal:
:ls:b N
Switch to buffer number N
Misal:
:b 2:tabnew
Open a new tab
Misal:
:tabnew file.txt:tabn
Switch to the next tab
Misal:
:tabn:tabp
Switch to the previous tab
Misal:
:tabp:tabclose
Close the current tab
Misal:
:tabclosegt
Go to the next tab
Misal:
gtgT
Go to the previous tab
Misal:
gTq{a-z}
Start recording a macro into register {a-z}
Misal:
qqq (stop)
Stop recording the current macro
Misal:
q@{a-z}
Execute the macro stored in register {a-z}
Misal:
@q@@
Repeat the last executed macro
Misal:
@@N@{a-z}
Execute macro N times
Misal:
5@q:reg
Show the contents of all registers
Misal:
:regv then d
Select text in Visual mode then delete it
Misal:
vwdv then y
Select text in Visual mode then yank (copy) it
Misal:
vwyv then c
Select text in Visual mode then change it
Misal:
vwcv then >
Indent selected text to the right
Misal:
vip>vip
Select the current paragraph in Visual mode
Misal:
vipviw
Select the current word in Visual mode
Misal:
viwvis
Select the current sentence in Visual mode
Misal:
visV then J
Select lines in Visual Line mode then join them
Misal:
VjJ:set number
Show line numbers
Misal:
:set number:set nonumber
Hide line numbers
Misal:
:set nonumber:syntax on
Enable syntax highlighting
Misal:
:syntax on:colorscheme
Change the color scheme
Misal:
:colorscheme desert:help {topic}
Open Vim help for a topic
Misal:
:help :wm{a-z}
Set a mark at the current cursor position
Misal:
ma'{a-z}
Jump to the line of a mark
Misal:
'a`{a-z}
Jump to the exact position of a mark
Misal:
`a:set paste
Enable paste mode to avoid auto-indent issues
Misal:
:set paste:set ignorecase
Make searches case-insensitive
Misal:
:set ignorecase:set hlsearch
Highlight all search matches
Misal:
:set hlsearchga
Show the ASCII value of the character under the cursor
Misal:
gazz
Center the current line on the screen
Misal:
zzCtrl+g
Show the current file name and cursor position
Misal:
Ctrl+gƏlaqədar Alətlər
Bütün alətlərə baxınGit əmrləri Fırıldaq vərəqi
Hərtərəfli Git əmr fırıldaqçı vərəqi. Nümunələr, təsvirlər və bir klik surəti ilə 80-dən çox vacib Git əmrini axtarın.
Docker əmrləri Fırıldaq vərəqi
Hərtərəfli Docker əmr fırıldaqçı vərəqi. Nümunələr, təsvirlər və bir klik surəti ilə 70+ əsas Docker əmrini axtarın.
Linux / Bash Komanda Fırıldaq Vərəqi
Hərtərəfli Linux və Bash əmr fırıldaqçı vərəqi. Nümunələr, təsvirlər və bir klik surəti ilə 80+ əsas əmri axtarın.
SQL Formatter & Gözəlləşdirici
Brauzerinizdə dərhal SQL sorğularını formatlayın, gözəlləşdirin və təmizləyin. Yükləmə tələb olunmur - tamamilə şəxsi və pulsuz.