0
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 1 year has passed since last update.

【Vim】ステータスラインの表示/非表示

Last updated at Posted at 2023-02-05

はじめに

スマホ(Android)で開発するのでVimの環境構築は必須です。

動作環境

  • Sony Xperia 10 IV
  • Android OS 12
  • UserLAnd 3.1.4
  • Ubuntu 20.04.5 LTS
  • Vim 8.1.3741

一時的に切り替えたい場合

  • 常に表示
:set laststatus=2
  • 分割時のみ表示
:set laststatus=1
  • 常に非表示
:set laststatus=0

デフォルト設定にしたい場合

  • 常に表示
~/.vimrc
set laststatus=2
  • 分割時のみ表示
~/.vimrc
set laststatus=1
  • 常に非表示
~/.vimrc
set laststatus=0

スクリーンショット

  • 常に表示(右は分割時)

  • 分割時のみ表示(右は分割時)

  • 常に非表示(右は分割時)

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