ಉಚಿತ ಪರಿವರ್ತಕ
ವಿಮ್ ಆಜ್ಞೆಗಳು ಚೀಟ್ ಶೀಟ್
ಸಮಗ್ರ ವಿಮ್ ಕಮಾಂಡ್ ಚೀಟ್ ಶೀಟ್. ಉದಾಹರಣೆಗಳು, ವಿವರಣೆಗಳು ಮತ್ತು ಒಂದು ಕ್ಲಿಕ್ ನಕಲುಗಳೊಂದಿಗೆ 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 ಫಾರ್ಮ್ಯಾಟರ್ & ಬ್ಯೂಟಿಫೈಯರ್
ನಿಮ್ಮ ಬ್ರೌಸರ್ನಲ್ಲಿ ತಕ್ಷಣವೇ SQL ಪ್ರಶ್ನೆಗಳನ್ನು ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಿ, ಸುಂದರಗೊಳಿಸಿ ಮತ್ತು ಸ್ವಚ್ಛಗೊಳಿಸಿ. ಯಾವುದೇ ಅಪ್ಲೋಡ್ ಅಗತ್ಯವಿಲ್ಲ - ಸಂಪೂರ್ಣವಾಗಿ ಖಾಸಗಿ ಮತ್ತು ಉಚಿತ.