소스 검색

Add automatic detection if beakerlib logs

Alois Mahdal 7 년 전
부모
커밋
6630311b16
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      dotfiles/vim/vimrc

+ 1
- 0
dotfiles/vim/vimrc 파일 보기

@@ -90,6 +90,7 @@ if has("autocmd")
90 90
   au!
91 91
   autocmd FileType text setlocal textwidth=78
92 92
   autocmd BufNewFile,BufReadPost *.md set filetype=markdown
93
+  autocmd BufNewFile,BufReadPost *TESTOUT.log* set filetype=beakerlib
93 94
   autocmd BufReadPost *
94 95
     \ if line("'\"") > 1 && line("'\"") <= line("$") |
95 96
     \   exe "normal! g`\"" |