diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-12-14 21:17:39 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-12-14 21:17:39 +0100 |
commit | f1568eca24d30d4f308e987657c53cd48d97d8fa (patch) | |
tree | 900c802d8096eca43c957c0b3c16cc36cec32e7b /runtime/syntax/dirpager.vim | |
parent | f788a0610309ed9787b4e48216c7d7d4446744c5 (diff) | |
download | vim-git-f1568eca24d30d4f308e987657c53cd48d97d8fa.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/syntax/dirpager.vim')
-rw-r--r-- | runtime/syntax/dirpager.vim | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/runtime/syntax/dirpager.vim b/runtime/syntax/dirpager.vim index 216bfd767..371dda367 100644 --- a/runtime/syntax/dirpager.vim +++ b/runtime/syntax/dirpager.vim @@ -1,18 +1,31 @@ " Vim syntax file -" Language: directory pager -" Maintainer: Thilo Six <T.Six@gmx.de> -" Derived From: Nikolai Weibull's dircolors.vim -" Latest Revision: 2011-04-09 +" Language: directory pager +" Maintainer: Thilo Six <T.Six@gmx.de> +" Derived From: Nikolai Weibulls dircolors.vim +" Last Change: 2011 Dec 11 +" Modeline: vim: ts=8:sw=2:sts=2: " " usage: $ ls -la | view -c "set ft=dirpager" - " +" +",----[ ls(1posix) ]-------------------------------------------------- +" +" The <entry type> character shall describe the type of file, as +" follows: +" +" d Directory. +" b Block special file. +" c Character special file. +" l (ell) Symbolic link. +" p FIFO. +" - Regular file. +"`-------------------------------------------------------------------- +" -if exists("b:current_syntax") +if exists("b:current_syntax") || &compatible finish endif -let s:cpo_save = &cpo -set cpo&vim setlocal nowrap syn keyword DirPagerTodo contained FIXME TODO XXX NOTE @@ -20,14 +33,16 @@ syn keyword DirPagerTodo contained FIXME TODO XXX NOTE syn region DirPagerExe start='^...x\|^......x\|^.........x' end='$' contains=DirPagerTodo,@Spell syn region DirPagerDir start='^d' end='$' contains=DirPagerTodo,@Spell syn region DirPagerLink start='^l' end='$' contains=DirPagerTodo,@Spell +syn region DirPagerSpecial start='^b' end='$' contains=DirPagerTodo,@Spell +syn region DirPagerSpecial start='^c' end='$' contains=DirPagerTodo,@Spell +syn region DirPagerFifo start='^p' end='$' contains=DirPagerTodo,@Spell hi def link DirPagerTodo Todo hi def DirPagerExe ctermfg=Green guifg=Green hi def DirPagerDir ctermfg=Blue guifg=Blue hi def DirPagerLink ctermfg=Cyan guifg=Cyan +hi def DirPagerSpecial ctermfg=Yellow guifg=Yellow +hi def DirPagerFifo ctermfg=Brown guifg=Brown let b:current_syntax = "dirpager" -let &cpo = s:cpo_save -unlet s:cpo_save - |