મફત કન્વર્ટર
વિમ આદેશો ચીટ શીટ
વ્યાપક વિમ કમાન્ડ ચીટ શીટ. ઉદાહરણો, વર્ણનો અને એક-ક્લિક નકલ સાથે 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સંબંધિત ટૂલ્સ
બધા ટૂલ્સ જુઓગિટ આદેશો ચીટ શીટ
વ્યાપક ગિટ આદેશ ચીટ શીટ. ઉદાહરણો, વર્ણનો અને એક-ક્લિક કૉપિ સાથે 80+ આવશ્યક ગિટ આદેશો શોધો.
ડોકર આદેશો ચીટ શીટ
વ્યાપક ડોકર આદેશ ચીટ શીટ. ઉદાહરણો, વર્ણનો અને એક-ક્લિક નકલ સાથે 70+ આવશ્યક ડોકર આદેશો શોધો.
Linux / Bash આદેશ ચીટ શીટ
વ્યાપક Linux અને Bash આદેશ ચીટ શીટ. ઉદાહરણો, વર્ણનો અને એક-ક્લિક નકલ સાથે 80+ આવશ્યક આદેશો શોધો.
એસક્યુએલ ફોર્મેટર અને બ્યુટિફાયર
તમારા બ્રાઉઝરમાં તરત જ SQL ક્વેરીઝને ફોર્મેટ કરો, સુંદર બનાવો અને સાફ કરો. અપલોડની જરૂર નથી — સંપૂર્ણપણે ખાનગી અને મફત.