3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

viの使い方メモ

Last updated at Posted at 2018-07-12

##概要
自分がviエディタを使う時に毎回毎回コマンドを調べているのでまとめておこうと思って
注:私がよく使うものしか載せてないです

##基本的操作
###起動
vi ファイル名.py (pythonの場合)

###モード
viにはコマンドモード・編集モードの2つのモードがある.

・[Esc]キーで常にコマンドモードになる.
 →コマンドモードでviを保存や終了できる

###コマンドモードコマンド
<コマンド> 作業 というように記述

~終了系~
<:q> セーブせずに終了
<:w> セーブするが終了しない
<:wq> セーブして終了    

~編集モードに移る~
< i > 現在のカーソル位置から編集可能

メモ これから随時更新予定

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?