Created
November 5, 2013 08:00
-
-
Save geta6/7315439 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# masuilab | |
## vimのコマンド | |
### 必須 | |
+ ESC コマンドモード終わる | |
- :w 保存 | |
* :q 終了 | |
* a カーソル直後 | |
* i カーソル直下 | |
* o 次の行 | |
* O 前の行から入力開始 | |
* y コピー | |
* p ペースト | |
* d デリート | |
### いいことがある | |
* v 選択(visual mode) | |
* V 行選択 | |
* 0 文頭 | |
* ^ インデント頭 | |
* $ 文末 | |
* g 文書の一番頭 | |
* G 文書の一番下 | |
* yG 文書の末まで全部コピー | |
### べんり | |
* :di コピー履歴 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment