मोफत कनवर्टर
विम कमांड्स फसवणूक पत्रक
व्यापक विम कमांड चीट शीट. उदाहरणे, वर्णन आणि एक-क्लिक कॉपीसह 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 कमांड शोधा.
डॉकर आदेश फसवणूक पत्रक
व्यापक डॉकर कमांड चीट शीट. उदाहरणे, वर्णन आणि एक-क्लिक कॉपीसह 70+ आवश्यक डॉकर कमांड शोधा.
लिनक्स / बॅश कमांड चीट शीट
व्यापक लिनक्स आणि बॅश कमांड चीट शीट. उदाहरणे, वर्णन आणि एक-क्लिक कॉपीसह 80+ आवश्यक आदेश शोधा.
एसक्यूएल फॉरमॅटर आणि ब्युटीफायर
तुमच्या ब्राउझरमध्ये SQL क्वेरी त्वरित स्वरूपित करा, सुशोभित करा आणि साफ करा. अपलोड आवश्यक नाही — पूर्णपणे खाजगी आणि विनामूल्य.