]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vim/vim/bundle/deb/plugin/debPlugin.vim
Merge branch 'multimedia' again
[config/dotfiles.git] / vim / vim / bundle / deb / plugin / debPlugin.vim
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
5 "
6 " This file only sets the autocommands. Functions are in autoload/deb.vim.
7 "
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
12 "
13 if &cp || exists("g:loaded_debPlugin") || !has("unix") || v:version < 700
14     finish
15 endif
16 let g:loaded_debPlugin = 1
17
18 autocmd BufReadCmd   *.deb              call deb#browse(expand("<amatch>"))