blob: 4051fa54196335d641ab05c5419c64c17aa0dc31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
" Entry point for :ScratchBuffer command
function! scratch_buffer#(mods, count, ...) abort
" Start building command argument vector
let command = []
" Add any modifiers first (e.g. :vertical)
call add(command, a:mods)
" If a count of more than zero was provided, add that as a prefix for :new
if a:count > 0
call add(command, a:count)
endif
" Add the :new command
call add(command, 'new')
" Add any other arguments passed in
call extend(command, a:000)
" Execute the command
execute join(command)
" Set the new buffer to a scratch 'buftype' to stop it from saving and to
" reassure Vim that it doesn't need to be saved
set buftype=nofile
endfunction
|