Excerpts from Axel's message of Fri Aug 12 10:05:06 +0200 2011: > How about supporting the file://[/] syntax - for local files displayed in a
You can already do so. You can use autocommands. Read this minimal code to get an idea: https://github.com/MarcWeber/vim-addon-views I'm using it to view git diff, ... The important lines are: augroup VIM_PLUGIN_VIEWS autocmd BufReadCmd vim_view_*://* call views#FillContents() augroup end Well known plugins like netrw also use this. Marc Weber -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
