ఉచిత కన్వర్టర్
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 కమాండ్ చీట్ షీట్. ఉదాహరణలు, వివరణలు మరియు ఒక-క్లిక్ కాపీతో 80+ ముఖ్యమైన Git ఆదేశాలను శోధించండి.
డాకర్ ఆదేశాలు చీట్ షీట్
సమగ్ర డాకర్ కమాండ్ చీట్ షీట్. ఉదాహరణలు, వివరణలు మరియు ఒక-క్లిక్ కాపీతో 70+ ముఖ్యమైన డాకర్ ఆదేశాలను శోధించండి.
Linux / Bash కమాండ్ చీట్ షీట్
సమగ్ర Linux మరియు బాష్ కమాండ్ చీట్ షీట్. ఉదాహరణలు, వివరణలు మరియు ఒక-క్లిక్ కాపీతో 80+ ముఖ్యమైన ఆదేశాలను శోధించండి.
SQL ఫార్మాటర్ & బ్యూటిఫైయర్
మీ బ్రౌజర్లో SQL ప్రశ్నలను తక్షణమే ఫార్మాట్ చేయండి, అందంగా చేయండి మరియు శుభ్రం చేయండి. అప్లోడ్ అవసరం లేదు — పూర్తిగా ప్రైవేట్ మరియు ఉచితం.