4
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.

【vimrc】set expandtabしててもnoexpandtabになってしまう件

Posted at

普段そんなことなかったのに新しいMacで今までと同じ設定いれたらなぜかタブ入力するとそのままタブが入ってしまうことがあったのです。
(字面だけ見るとそりゃそうだろ。って話ですけどそういう話じゃないんですw)

vimrc上、

"set number
set ruler
set incsearch
set hlsearch
"set nowrap
set showmatch
"set whichwrap=h,l
set wrapscan
set ignorecase
set smartcase
set hidden
set history=2000
set autoindent
set expandtab
set tabstop=2
set shiftwidth=2
set paste

で、
set expandtab

しているのですが、

:verbose set expandtab?
で確認すると。

noexpandtab
        Last set from ~/.vimrc

となってしまうという不思議な状態。

解決方法

set expandtab

set paste

の下に持っていってあげたら解決しました。

おそらく何かが邪魔していたのでしょうが深くは気にしないことにします。

誰か詳しい人教えてください。

4
1
5

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