Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Vim 手指健康操
Search
dv
October 18, 2014
Programming
3
870
Vim 手指健康操
dv
October 18, 2014
Tweet
Share
More Decks by dv
See All by dv
Python module in Rust
wdv4758h
0
170
First try for CAS, SymPy with codegen
wdv4758h
0
670
Android Memory Leak Profiling - VMFive
wdv4758h
0
270
CPython's bug in feature that nobody uses
wdv4758h
0
110
FreeBSD ports system
wdv4758h
0
140
Other Decks in Programming
See All in Programming
そのpreloadは必要?見過ごされたpreloadが技術的負債として爆発した日
mugitti9
2
3k
Your Perfect Project Setup for Angular @BASTA! 2025 in Mainz
manfredsteyer
PRO
0
120
なぜGoのジェネリクスはこの形なのか? Featherweight Goが明かす設計の核心
ryotaros
7
1k
階層構造を表現するデータ構造とリファクタリング 〜1年で10倍成長したプロダクトの変化と課題〜
yuhisatoxxx
3
910
Swift Concurrency - 状態監視の罠
objectiveaudio
2
450
(Extension DC 2025) Actor境界を越える技術
teamhimeh
1
220
Чего вы не знали о строках в Python – Василий Рябов, PythoNN
sobolevn
0
160
Back to the Future: Let me tell you about the ACP protocol
terhechte
0
130
AI Coding Meetup #3 - 導入セッション / ai-coding-meetup-3
izumin5210
0
570
iOS 17で追加されたSubscriptionStoreView を利用して5分でサブスク実装チャレンジ
natmark
0
570
プログラマのための作曲入門
cheebow
0
540
Pythonスレッドとは結局何なのか? CPython実装から見るNoGIL時代の変化
curekoshimizu
4
1.3k
Featured
See All Featured
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
140
34k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
252
21k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
19
1.2k
Testing 201, or: Great Expectations
jmmastey
45
7.7k
Agile that works and the tools we love
rasmusluckow
331
21k
Writing Fast Ruby
sferik
629
62k
How GitHub (no longer) Works
holman
315
140k
[RailsConf 2023] Rails as a piece of cake
palkan
57
5.9k
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
850
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
Transcript
None
About me • 依然是個學生 • 爬說語使用者 • Vim 成癮 •
Arch Linux user
Vim ? 強力的文字編輯器 ! 可高度的客制化 ! Vim 在手 希望無窮 (?
Install • Linux ◦ 看你 distribution 有沒有內建 ◦ 沒有就用 package
manager 安裝 • Mac ◦ MacVim • Windows ◦ download here ◦ 或是用 Cygwin
Open
大家可以開 vimtutor 練習
Basic
Mode (Vim 有許多模式可以使用) 常用的三種 : • 一般模式(Normal) • 編輯模式(Insert) •
指令模式
你現在所在的是 一般模式 (剛進來啊)
回到一般模式 (萬用)
進入 i nsert mode
a ppend (在 normal mode 按) 會把字加在 後面一個位置
現在你可以開始亂打了
回到一般模式 我們來看看重要的 移動
← ↓ ↑ → h j k l
None
數字 + 操作 一次變多次
3 h →向左三次 100 h →向左一百次 10000 h →向左一萬次 ...
快速跳到 檔案開頭 goto go gogo ~
快速跳到 某行 數字 gg 到第3行 : 3gg
快速跳到 檔案結尾 G 我變大囉
大小寫版本 通常是 類似動作
刪刪刪 刪一個字 x 我是小 x 喔
刪刪刪 刪前一個字 X 我是大 X 喔
刪刪刪 刪一整行 delete d
進入指令 mode ESC 先回 normal : 用冒號正試進入
存檔 :w rite 離開 :quit 存檔離開 :wq 不存檔離開 :q!
上一步 undo 下一步 Ctrl + redo
複製 yank 貼上 paste
複製 一個字 yank letter
複製 一行 yank y
以上你已經有了 基本動作
More Powerful
Big Little insert 寫到目前位置 append 寫到目前位置之後 open blank line 寫到下行
paste 貼在後面 Insert 寫到行首 Append 寫到行尾 Open blank line 寫到上行 Paste 貼在前面
更多移動 w 往後一個單字 b 往前一個單字 e 單字結尾
更多移動 f 往右找 F 往左找
搜尋 / 支援 regular expression
取代 r 接著打上要取代的字
取代 R 進入 replace mode 接著打的字都會直接取代
visual mode v 我是小寫 一般反白 V 我是大寫 反白一整行 Ctrl +
v 我是小寫 方塊反白
visual mode o 我是小寫 對角調整固定點 O 我是大寫 左右調整固定點
visual mode 選完之後可以搭配其他操作 例如: delete, yank
翻翻翻 翻半頁 Ctrl + down Ctrl + up
翻翻翻 翻半頁 Ctrl + forward Ctrl + backward
刪除 delete in 括弧/引號 中的文字 ( [ { " '
依需求選一個使用 更改 change in
刪除 delete all 括弧/引號 中的文字 ( [ { " '
包含 括弧/引號 依需求選一個使用 更改 change all
Combo 起手式 delete 刪除 change 更改 yank 複製 搭配 w
word G 檔案尾巴 gg 檔案開頭 $ 行尾 0 行首 ^ 有字行首
雙重起手式 通常代表 用在 一整行
More and More
更深入 更多 Vim 內建操作 個人化 vimrc vim plugin key maps
...
Thanks