இலவச மாற்றி

விம் கட்டளைகள் ஏமாற்று தாள்

விரிவான Vim கட்டளை ஏமாற்று தாள். எடுத்துக்காட்டுகள், விளக்கங்கள் மற்றும் ஒரு கிளிக் நகலுடன் 80+ அத்தியாவசிய Vim கட்டளைகளைத் தேடுங்கள்.

i
Enter Insert mode before the cursor
எடுத்துக்காட்டு:i
I
Enter Insert mode at the beginning of the line
எடுத்துக்காட்டு:I
a
Enter Insert mode after the cursor
எடுத்துக்காட்டு:a
A
Enter Insert mode at the end of the line
எடுத்துக்காட்டு:A
o
Open a new line below and enter Insert mode
எடுத்துக்காட்டு:o
O
Open a new line above and enter Insert mode
எடுத்துக்காட்டு:O
v
Enter Visual mode (character selection)
எடுத்துக்காட்டு:v
V
Enter Visual Line mode (line selection)
எடுத்துக்காட்டு:V
Ctrl+v
Enter Visual Block mode (column selection)
எடுத்துக்காட்டு:Ctrl+v
:
Enter Command-line mode
எடுத்துக்காட்டு::w
Esc
Return to Normal mode from any mode
எடுத்துக்காட்டு:Esc
R
Enter Replace mode (overwrite characters)
எடுத்துக்காட்டு:R
h
Move cursor left
எடுத்துக்காட்டு:5h
j
Move cursor down
எடுத்துக்காட்டு:10j
k
Move cursor up
எடுத்துக்காட்டு:10k
l
Move cursor right
எடுத்துக்காட்டு:5l
w
Move to the start of the next word
எடுத்துக்காட்டு:3w
b
Move to the start of the previous word
எடுத்துக்காட்டு:3b
e
Move to the end of the current word
எடுத்துக்காட்டு:2e
0
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
எடுத்துக்காட்டு:gg
G
Move to the last line of the file
எடுத்துக்காட்டு:G
:N
Jump to line number N
எடுத்துக்காட்டு::42
Ctrl+f
Scroll forward (down) one screen
எடுத்துக்காட்டு:Ctrl+f
Ctrl+b
Scroll backward (up) one screen
எடுத்துக்காட்டு:Ctrl+b
Ctrl+d
Scroll down half a screen
எடுத்துக்காட்டு:Ctrl+d
Ctrl+u
Scroll up half a screen
எடுத்துக்காட்டு:Ctrl+u
H
Move cursor to the top of the screen
எடுத்துக்காட்டு:H
M
Move cursor to the middle of the screen
எடுத்துக்காட்டு:M
L
Move cursor to the bottom of the screen
எடுத்துக்காட்டு:L
%
Jump to matching bracket, parenthesis, or brace
எடுத்துக்காட்டு:%
x
Delete the character under the cursor
எடுத்துக்காட்டு:x
dd
Delete (cut) the current line
எடுத்துக்காட்டு:dd
dw
Delete from cursor to the end of the word
எடுத்துக்காட்டு:dw
d$
Delete from cursor to the end of the line
எடுத்துக்காட்டு:d$
D
Delete from cursor to end of line (same as d$)
எடுத்துக்காட்டு:D
yy
Yank (copy) the current line
எடுத்துக்காட்டு:yy
yw
Yank (copy) from cursor to end of word
எடுத்துக்காட்டு:yw
p
Paste after the cursor
எடுத்துக்காட்டு:p
P
Paste before the cursor
எடுத்துக்காட்டு:P
u
Undo the last change
எடுத்துக்காட்டு:u
Ctrl+r
Redo the last undone change
எடுத்துக்காட்டு:Ctrl+r
cc
Change (delete and enter insert mode) the current line
எடுத்துக்காட்டு:cc
cw
Change from cursor to end of word
எடுத்துக்காட்டு:cw
c$
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
எடுத்துக்காட்டு:?foo
n
Repeat the last search in the same direction
எடுத்துக்காட்டு:n
N
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.txt
Ctrl+w+w
Switch focus to the next split window
எடுத்துக்காட்டு:Ctrl+w w
Ctrl+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
எடுத்துக்காட்டு::tabclose
gt
Go to the next tab
எடுத்துக்காட்டு:gt
gT
Go to the previous tab
எடுத்துக்காட்டு:gT
q{a-z}
Start recording a macro into register {a-z}
எடுத்துக்காட்டு:qq
q (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
எடுத்துக்காட்டு::reg
v then d
Select text in Visual mode then delete it
எடுத்துக்காட்டு:vwd
v then y
Select text in Visual mode then yank (copy) it
எடுத்துக்காட்டு:vwy
v then c
Select text in Visual mode then change it
எடுத்துக்காட்டு:vwc
v then >
Indent selected text to the right
எடுத்துக்காட்டு:vip>
vip
Select the current paragraph in Visual mode
எடுத்துக்காட்டு:vip
viw
Select the current word in Visual mode
எடுத்துக்காட்டு:viw
vis
Select the current sentence in Visual mode
எடுத்துக்காட்டு:vis
V 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 :w
m{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 hlsearch
ga
Show the ASCII value of the character under the cursor
எடுத்துக்காட்டு:ga
zz
Center the current line on the screen
எடுத்துக்காட்டு:zz
Ctrl+g
Show the current file name and cursor position
எடுத்துக்காட்டு:Ctrl+g

இந்த கருவி பற்றி

விம் கட்டளைகளுக்கான விரிவான விரைவான குறிப்பு வழிகாட்டி. பொதுவாகப் பயன்படுத்தப்படும் கட்டளைகள், தொடரியல் மற்றும் வகைகளால் ஒழுங்கமைக்கப்பட்ட எடுத்துக்காட்டுகளை உலாவவும். தேடக்கூடியது மற்றும் மொபைலுக்கு ஏற்றது - உங்களுக்கு விரைவான நினைவூட்டல் தேவைப்படும்போது உடனடி அணுகலுக்கு இந்தப் பக்கத்தை புக்மார்க் செய்யவும்.

பயன்படுத்துவது எப்படி

  1. வகைப்படுத்தப்பட்ட குறிப்புப் பிரிவுகளை உலாவவும்.
  2. குறிப்பிட்ட கட்டளைகள் அல்லது தொடரியல் கண்டுபிடிக்க தேடல் பட்டியைப் பயன்படுத்தவும்.
  3. பயன்பாட்டு எடுத்துக்காட்டுகள் மற்றும் விளக்கங்களைக் காண எந்த உள்ளீட்டையும் கிளிக் செய்யவும்.
  4. உங்கள் டெர்மினல் அல்லது எடிட்டரில் பயன்படுத்த கட்டளைகளை நேரடியாக நகலெடுக்கவும்.

அடிக்கடி கேட்கப்படும் கேள்விகள்

இந்தக் குறிப்பு புதுப்பித்த நிலையில் உள்ளதா?
பதிப்புகள் முழுவதும் நிலையானதாக இருக்கும் பரவலாகப் பயன்படுத்தப்படும் கட்டளைகள் மற்றும் தொடரியல் ஆகியவற்றை மேற்கோள் உள்ளடக்கியது. சமீபத்திய சேர்த்தல்கள் அல்லது பதிப்பு சார்ந்த அம்சங்களுக்கு, அதிகாரப்பூர்வ ஆவணங்களைப் பார்க்கவும்.
நான் இதை ஆஃப்லைனில் பயன்படுத்தலாமா?
ஏற்றப்பட்டதும், இணைய இணைப்பு இல்லாமல் பக்கம் வேலை செய்யும். விரைவான அணுகலுக்காக இதை புக்மார்க் செய்யவும் — எல்லா உள்ளடக்கமும் கூடுதல் நெட்வொர்க் கோரிக்கைகள் இல்லாமல் உலாவியில் வழங்கப்படுகின்றன.
இது விரிவானதா அல்லது அடிப்படையானதா?
இது 90% அன்றாடப் பணிகளைக் கையாளும் பொதுவாகப் பயன்படுத்தப்படும் கட்டளைகள் மற்றும் வடிவங்களை உள்ளடக்கியது. முக்கிய அல்லது மேம்பட்ட அம்சங்களுக்கு, அதிகாரப்பூர்வ ஆவணங்களைப் பார்க்கவும்.
நான் சேர்த்தல்களை பரிந்துரைக்கலாமா?
எங்கள் குறிப்புகளை நாங்கள் தொடர்ந்து புதுப்பிக்கிறோம். விடுபட்ட கட்டளைகளை நீங்கள் கவனித்தால் அல்லது பரிந்துரைகள் இருந்தால், எங்கள் தொடர்புப் பக்கத்தின் மூலம் எங்களுக்குத் தெரிவிக்கவும்.