]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/plugin/ZoomWinPlugin.vim
Move EasyMotion and LargeFile to pathogen bundle
[rbdr/dotfiles] / vim / plugin / ZoomWinPlugin.vim
CommitLineData
0d23b6e5
BB
1" ZoomWin: Brief-like ability to zoom into/out-of a window
2" Author: Charles Campbell
3" original version by Ron Aaron
4" Date: Jan 16, 2009
5" Version: 23e ASTRO-ONLY
6" History: see :help zoomwin-history {{{1
7" GetLatestVimScripts: 508 1 :AutoInstall: ZoomWin.vim
8
9" ---------------------------------------------------------------------
10" Load Once: {{{1
11if &cp || exists("g:loaded_ZoomWinPlugin")
12 finish
13endif
14if v:version < 702
15 echohl WarningMsg
16 echo "***warning*** this version of ZoomWin needs vim 7.2"
17 echohl Normal
18 finish
19endif
20let s:keepcpo = &cpo
21let g:loaded_ZoomWinPlugin = "v23"
22set cpo&vim
23"DechoTabOn
24
25" ---------------------------------------------------------------------
26" Public Interface: {{{1
27if !hasmapto("<Plug>ZoomWin")
28 nmap <unique> <c-w>o <Plug>ZoomWin
29endif
30nnoremap <silent> <script> <Plug>ZoomWin :set lz<CR>:silent call ZoomWin#ZoomWin()<CR>:set nolz<CR>
31com! ZoomWin :set lz|silent call ZoomWin#ZoomWin()|set nolz
32
33au VimLeave * call ZoomWin#CleanupSessionFile()
34
35" ---------------------------------------------------------------------
36" ZoomWin: toggles between a single-window and a multi-window layout {{{1
37" The original version was by Ron Aaron.
38" This function provides compatibility with previous versions.
39fun! ZoomWin()
40 call ZoomWin#ZoomWin()
41endfun
42
43" ---------------------------------------------------------------------
44" Restore: {{{1
45let &cpo= s:keepcpo
46unlet s:keepcpo
47" ---------------------------------------------------------------------
48" Modelines: {{{1
49" vim: ts=4 fdm=marker