]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/password-store/syntax/pass.vim

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add '.vim/bundle/vim-flake8/' from commit 'ddceec6c457fd59bc2a9321cbf817e42aa4bfd86'
[etc/vim.git] / .vim / bundle / password-store / syntax / pass.vim
1 if exists('b:current_syntax') | finish|  endif
2
3 " first line (by convention always a single pasword)
4 syntax match password_store_password /\%1l.*/
5 highlight link password_store_password Comment
6
7 " highlight short passwords
8 syntax match password_store_password_short /\%1l.\{,6\}$/
9 highlight link password_store_password_short Error
10
11 " colon field value is the suggested path for additional information
12 syntax match password_store_header '\v^[^:]+:'
13 highlight link password_store_header PreProc
14
15