diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/scratch_buffer.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugin/scratch_buffer.vim b/plugin/scratch_buffer.vim index c209c8b..fe7a872 100644 --- a/plugin/scratch_buffer.vim +++ b/plugin/scratch_buffer.vim @@ -1,2 +1,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>) |