1 " debPlugin.vim -- a Vim plugin for browsing debian packages
2 " copyright (C) 2007, arno renevier <arenevier@fdn.fr>
3 " Distributed under the GNU General Public License (version 2 or above)
4 " Last Change: 2007 December 07
6 " This file only sets the autocommands. Functions are in autoload/deb.vim.
8 " Latest version of that file can be found at
9 " http://www.fdn.fr/~arenevier/vim/plugin/debPlugin.vim
10 " It should also be available at
11 " http://www.vim.org/scripts/script.php?script_id=1970
13 if &cp || exists("g:loaded_debPlugin") || !has("unix") || v:version < 700
16 let g:loaded_debPlugin = 1
18 autocmd BufReadCmd *.deb call deb#browse(expand("<amatch>"))