1
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 3 years have passed since last update.

vimのカーソル位置保持できない解決メモ

Posted at
.vimrc
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g`\"" | endif

これで前回ファイルを開いた位置にカーソルが移動するはずなのに、いつの間にか保持してくれない。

❯ ll ~/.viminfo
-rw------- 1 root root 12K  3月 13 21:57 /home/nakayama/.viminfo

.viminfoの所有がrootになってた。chownで変更して解決。

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