在第80個字元的位置顯示顏色-- Vim

References : http://stackoverflow.com/questions/235439/vim-80-column-layout-concerns


為什麼要在第80個字元的位置顯示顏色呢?主要是為了寫程式的時候提醒自己不要寫太長

所以 將下面的程式碼加入在.vimrc最後面就可以在第80個字元的位置顯示顏色:

if exists('+colorcolumn')
  set colorcolumn=80
else
  au BufWinEnter * let w:m2=matchadd('ErrorMsg', '\%>80v.\+', -1)
endif

效果就會像下圖一樣:







留言

熱門文章