ነጻ መለወጫ
የቪም ትዕዛዞች የማጭበርበር ወረቀት
አጠቃላይ የቪም ትዕዛዝ ማጭበርበር ሉህ። 80+ አስፈላጊ የቪም ትዕዛዞችን በምሳሌዎች፣ መግለጫዎች እና በአንድ ጠቅታ ቅጂ ይፈልጉ።
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 ትዕዛዞች የማጭበርበር ወረቀት
አጠቃላይ የጊት ትዕዛዝ ማጭበርበር ሉህ። 80+ አስፈላጊ የ Git ትዕዛዞችን በምሳሌዎች፣ መግለጫዎች እና በአንድ ጠቅታ ቅጂ ይፈልጉ።
Docker ትዕዛዞች የማጭበርበር ወረቀት
አጠቃላይ የዶከር ትዕዛዝ ማጭበርበር ሉህ። 70+ አስፈላጊ Docker ትዕዛዞችን በምሳሌዎች፣ መግለጫዎች እና በአንድ ጠቅታ ቅጂ ይፈልጉ።
ሊኑክስ / ባሽ የትእዛዝ ማጭበርበር ሉህ
አጠቃላይ ሊኑክስ እና ባሽ ማጭበርበሪያ ሉህ። 80+ አስፈላጊ ትዕዛዞችን በምሳሌዎች፣ መግለጫዎች እና በአንድ ጠቅታ ቅጂ ይፈልጉ።
የ SQL ቅርጸት & ማስዋቢያ
የ SQL መጠይቆችን በአሳሽዎ ውስጥ ይቅረጹ፣ ያስውቡ እና ያጽዱ። ምንም ሰቀላ አያስፈልግም - ሙሉ በሙሉ የግል እና ነጻ።