aboutsummaryrefslogtreecommitdiff
path: root/plugin/scratch_buffer.vim
blob: fe7a872d4ba04e5baf087934a5515c24d0218eae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
"
" scratch_buffer.vim: User command to open a scratch buffer.
"
" Author: Tom Ryder <tom@sanctum.geek.nz>
" License: Same as Vim itself
"
if exists('loaded_alternate_filetypes') || &compatible
  finish
endif

" Command to open scratch buffer
command! -bar -count=0 -nargs=* ScratchBuffer
      \ call scratch_buffer#(<q-mods>, <q-count>, <f-args>)