இலவச மாற்றி
விம் கட்டளைகள் ஏமாற்று தாள்
விரிவான 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 கட்டளை ஏமாற்று தாள். எடுத்துக்காட்டுகள், விளக்கங்கள் மற்றும் ஒரு கிளிக் நகலுடன் 80+ அத்தியாவசிய Git கட்டளைகளைத் தேடுங்கள்.
டோக்கர் கட்டளைகள் ஏமாற்று தாள்
விரிவான டோக்கர் கட்டளை ஏமாற்று தாள். எடுத்துக்காட்டுகள், விளக்கங்கள் மற்றும் ஒரு கிளிக் நகலுடன் 70+ அத்தியாவசிய Docker கட்டளைகளைத் தேடுங்கள்.
லினக்ஸ் / பாஷ் கட்டளை ஏமாற்று தாள்
விரிவான லினக்ஸ் மற்றும் பாஷ் கட்டளை ஏமாற்று தாள். எடுத்துக்காட்டுகள், விளக்கங்கள் மற்றும் ஒரு கிளிக் நகலுடன் 80+ அத்தியாவசிய கட்டளைகளைத் தேடுங்கள்.
SQL ஃபார்மேட்டர் & அழகுபடுத்துபவர்
உங்கள் உலாவியில் SQL வினவல்களை உடனடியாக வடிவமைக்கவும், அழகுபடுத்தவும் மற்றும் சுத்தம் செய்யவும். பதிவேற்றம் தேவையில்லை - முற்றிலும் தனிப்பட்டது மற்றும் இலவசம்.