0
1

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.

Vim 複数行を一度にインデントする

Last updated at Posted at 2019-09-25

#方法

  1. 「V」(すなわち、シフトキーを押しながら「v」)を入力すると、Visualmodeに移行します。
  2. jとkでインデントをしたい行の選択をします。
  3. 範囲が決まったら、「>」か「<」を入力します。これでインデントの調整が完了です。

##2回分のインデントを挿入(または削除)したい
その時は上記の操作で、「>」(または「<」)を押す前に「2」を押しましょう。

#どのような時に複数行インデントを調整する?
Pythonプログラムを書く時、ある処理を書いた後にforかwhileのブロックに入れたいと思うことがよくあるかと思います。多くの行を手作業でインデントするのは大変かと思います。また、forやwhileがいらないと気づいたときは逆にインデントを消したいと思うでしょう。

Python以外でもインデントを綺麗に揃えるとわかりやすくて良いですね。

#参考URL
vimで複数行のインデントを連続で行う - Qiita
https://qiita.com/ymko/items/a19f5309c8eb1e9466b8

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?