]> git.madduck.net Git - etc/vim.git/blobdiff - ftdetect/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:

Squashed '.vim/bundle/password-store/' changes from dc759ab3..474a7dfc
[etc/vim.git] / ftdetect / pass.vim
index 0ce0f48a911255e4d41ab94e64a7c5fc2508f620..408c174e5751692884eee6b28da78cd4d02f059b 100644 (file)
@@ -1,13 +1,5 @@
-" detect password-store files
-if exists('did_pass') || &compatible  || version < 700
-    finish
-endif
-let g:did_pass = 'did_pass'
-let s:save_cpo = &cpoptions
-set compatible&vim
-
-" this is straight from Tom Ryders plugin
-
+" this is mostly from Tom Ryders plugin
+" with deleyed obfuscation syntax
 autocmd VimEnter
             \ /dev/shm/pass.?*/?*.txt
             \,/dev/shm/gopass-edit*/secret
@@ -15,6 +7,3 @@ autocmd VimEnter
             \,/tmp/pass.?*/?*.txt
             \ setlocal filetype=pass |
             \ if password_store#setting('enable_syntax') ==# 'true' | setlocal syntax=pass.obfuscated | endif
-
-" Cleanup at end
-let &cpoptions = s:save_cpo