Set scratch buffer name.
[profile.git] / .vim / script / svn
1 " $Id$ vim: se syntax=vim:
2 " Define the function we'll use.  It's easier to do this than to faff about 
3 " trying to run a sequence of normal mode commands.
4 fun! SVNcommit()
5   " Allow closing an unmodified spec.
6   set nomod
7
8   " Create a new window, move it below the spec and read in a diff.
9   botright new
10   r!svn diff
11   setf diff
12
13   " Delete the blank line left above the diff.
14   1
15   delete
16   se nobuflisted
17   set buftype=nowrite
18   set bufhidden=hide
19   setlocal noswapfile
20   file [svn diff]
21
22   " Switch back to the top window.
23   wincmd k
24 endfun
25
26 " Expand the command line window so we don't have to press RETURN later.
27 let s:cmdheight = &cmdheight
28 se cmdheight=3
29
30 " Call and then discard our function.
31 call SVNcommit()
32 delfunction SVNcommit
33
34 " Restore the command window.
35 exe "se cmdheight=" . s:cmdheight
36
37 " Close the scratch buffer.
38 au BufWinLeave <buffer=1> qa!