Mercurial > vim
view runtime/syntax/dirpager.vim @ 12708:77960063e2e7 v8.0.1232
patch 8.0.1232: MS-Windows users are confused about default mappings
commit https://github.com/vim/vim/commit/c3fdf7f80b2febdd8a8f7a1310631567d257d66a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 28 18:36:48 2017 +0200
patch 8.0.1232: MS-Windows users are confused about default mappings
Problem: MS-Windows users are confused about default mappings.
Solution: Don't map keys in the console where they don't work. Add a choice
in the installer to use MS-Windows key bindings or not. (Christian
Brabandt, Ken Takata, closes #2093)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 28 Oct 2017 18:45:04 +0200 |
parents | 9cb3a75a20b9 |
children | 1e9e9d89f0ee |
line wrap: on
line source
" 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"