LoginSignup
4
1

More than 5 years have passed since last update.

neovimでカーソル位置を記憶させる

Posted at

neovimではデフォルトでファイル編集終了時のカーソル位置が記憶されないので、init.vim などの設定ファイルに以下のautocmdを記載します。

" カーソル位置記憶
autocmd BufReadPost *
      \ if line("'\"") > 0 && line ("'\"") <= line("$") |
      \   exe "normal! g'\"" |
      \ endif
4
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
4
1