소스 검색

removed whitespace note in airline if editing markdown

Josh Bicking 8 년 전
부모
커밋
ce5444cdd8
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      vimrc

+ 4 - 1
vimrc

@@ -127,7 +127,7 @@ function! BlackBG()
 endfunction
 
 " remove trailing whitespace and return to start position
-" remove lighlight if in nvim
+" remove highlight if in nvim
 if has('nvim')
     noremap <Leader>w :%s/\s\+$//<CR>:nohl<CR>``
 else
@@ -189,6 +189,9 @@ highlight YcmErrorsign ctermfg=Red
 " place the airline bar above the command line
 set laststatus=2
 
+" ignore trailing whitespace in markdown
+autocmd FileType markdown AirlineToggleWhitespace
+
 " neovim
 
 if has('nvim')