diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-09-28 22:18:09 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-09-28 22:18:09 +0200 |
commit | 27903c5b8656c796564ef073c1ebe77a2f0154e1 (patch) | |
tree | 2b0a3a14494d7976fb79a7517706e25d2a95d080 /syntax/dirpager.vim | |
parent | d5e38fa97bc50a93a66473d6cd7072fbcbadda57 (diff) | |
download | vim-polyglot-3.0.0.tar.gz vim-polyglot-3.0.0.zip |
Revert inlining basic language packv3.0.0
Diffstat (limited to '')
-rw-r--r-- | syntax/dirpager.vim | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/syntax/dirpager.vim b/syntax/dirpager.vim deleted file mode 100644 index b8f70ce6..00000000 --- a/syntax/dirpager.vim +++ /dev/null @@ -1,60 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vim') == -1 - -" Vim syntax file -" Maintainer: Thilo Six -" Contact: <vim-dev at vim dot org> -" http://www.vim.org/maillist.php#vim-dev -" -" Description: display directory content inside Vim with syntax -" highlighting -" File: runtime/syntax/dirpager.vim -" Last Change: 2012 May 19 -" Modeline: vim: ts=8:sw=2:sts=2: -" -" Credits: dirpager.vim is derived from Nikolai Weibulls dircolors.vim -" -" License: VIM License -" Vim is Charityware, see ":help Uganda" -" -" 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") || &compatible - finish -endif - -setlocal nowrap - -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" - - -endif |