বিনামূল্যে কনভার্টার
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 কমান্ড চিট শিট। উদাহরণ, বিবরণ এবং এক-ক্লিক কপি সহ ৮০+ প্রয়োজনীয় Git কমান্ড অনুসন্ধান করুন।
Docker কমান্ড চিট শিট
ব্যাপক Docker কমান্ড চিট শিট। উদাহরণ, বিবরণ এবং এক-ক্লিক কপি সহ 70+ প্রয়োজনীয় Docker কমান্ড অনুসন্ধান করুন।
Linux / Bash কমান্ড চিট শিট
Linux ও Bash কমান্ডের ব্যাপক চিট শিট। উদাহরণ, বিবরণ ও এক-ক্লিক কপিসহ ৮০+ প্রয়োজনীয় কমান্ড অনুসন্ধান করুন।
SQL কোয়েরি ফরম্যাটার ও হাইলাইটার
আপনার ব্রাউজারে তাৎক্ষণিকভাবে SQL কোয়েরি ফরম্যাট, সুন্দর ও সিনট্যাক্স-হাইলাইট করুন। বিনামূল্যে, নিরাপদ, আপলোডের প্রয়োজন নেই।