"============================================================================== " Copyright: Copyright (C) 2001-2010 Jeff Lanzarotta " Permission is hereby granted to use and distribute this code, " with or without modifications, provided that this copyright " notice is copied with it. Like anything else that's free, " bufexplorer.vim is provided *as is* and comes with no " warranty of any kind, either expressed or implied. In no " event will the copyright holder be liable for any damages " resulting from the use of this software. " Name Of File: bufexplorer.vim " Description: Buffer Explorer Vim Plugin " Maintainer: Jeff Lanzarotta (delux256-vim at yahoo dot com) " Last Changed: Friday, 22 October 2010 " Version: See g:bufexplorer_version for version number. " Usage: This file should reside in the plugin directory and be " automatically sourced. " " You may use the default keymappings of " " be - Opens BE. " bs - Opens horizontally window BE. " bv - Opens vertically window BE. " " Or you can use " " ":BufExplorer" - Opens BE. " ":BufExplorerHorizontalSplit" - Opens horizontally window BE. " ":BufExplorerVerticalSplit" - Opens vertically window BE. " " For more help see supplied documentation. " History: See supplied documentation. "============================================================================== " Exit quickly if already running or when 'compatible' is set. {{{1 if exists("g:bufexplorer_version") || &cp finish endif "1}}} " Version number let g:bufexplorer_version = "7.2.8" " Check for Vim version 700 or greater {{{1 if v:version < 700 "echo "Sorry, bufexplorer ".g:bufexplorer_version."\nONLY runs with Vim 7.0 and greater." finish endif " Public Interface {{{1 if maparg("be") =~ 'BufExplorer' nunmap be endif if maparg("bs") =~ 'BufExplorerHorizontalSplit' nunmap bs endif if maparg("bv") =~ 'BufExplorerVerticalSplit' nunmap bv endif nmap