LoginSignup
1
2

More than 5 years have passed since last update.

Vimでペースト時コメントアウトを無効化

Last updated at Posted at 2017-09-22

メモ

" auto comment off
augroup auto_comment_off
    autocmd!
    autocmd BufEnter * setlocal formatoptions-=r
    autocmd BufEnter * setlocal formatoptions-=o
augroup END

上記を.vimrcに記述すれば自動コメントアウトが無効化される

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