aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/scratch_buffer.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/autoload/scratch_buffer.vim')
-rw-r--r--vim/autoload/scratch_buffer.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/vim/autoload/scratch_buffer.vim b/vim/autoload/scratch_buffer.vim
deleted file mode 100644
index c0ef7cfc..00000000
--- a/vim/autoload/scratch_buffer.vim
+++ /dev/null
@@ -1,11 +0,0 @@
-function! scratch_buffer#(mods, count, ...) abort
- let command = []
- call add(command, a:mods)
- if a:count
- call add(command, a:count)
- endif
- call add(command, 'new')
- call extend(command, a:000)
- execute join(command)
- set buftype=nofile
-endfunction