aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-23 17:14:57 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-23 17:20:54 +1200
commitd24a25f7959197361f0ccfd08d5e8308abb6859c (patch)
treed65cbd5d6526905168b46ab47458a54a456d4c09 /vim
parentHave a little fun with compatible vi (diff)
downloaddotfiles-d24a25f7959197361f0ccfd08d5e8308abb6859c.tar.gz
dotfiles-d24a25f7959197361f0ccfd08d5e8308abb6859c.zip
Add basic homebrew scratch buffer plugin
Thanks to crose in Freenode #vim for a hint about `:help <mods>`.
Diffstat (limited to 'vim')
-rw-r--r--vim/autoload/scratch.vim11
-rw-r--r--vim/plugin/scratch.vim2
-rw-r--r--vim/vimrc6
3 files changed, 19 insertions, 0 deletions
diff --git a/vim/autoload/scratch.vim b/vim/autoload/scratch.vim
new file mode 100644
index 00000000..bf6566dc
--- /dev/null
+++ b/vim/autoload/scratch.vim
@@ -0,0 +1,11 @@
+function! scratch#(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
diff --git a/vim/plugin/scratch.vim b/vim/plugin/scratch.vim
new file mode 100644
index 00000000..399f5a31
--- /dev/null
+++ b/vim/plugin/scratch.vim
@@ -0,0 +1,2 @@
+command! -bar -count=0 -nargs=* Scratch
+ \ call scratch#(<q-mods>, <q-count>, <f-args>)
diff --git a/vim/vimrc b/vim/vimrc
index d8c40e38..b9b491e9 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -1625,6 +1625,12 @@ xmap <Leader>7 <Leader>&
"" Leader,*/8 is sticky-star: search, highlight, but don't move
nnoremap <silent> <Leader>* *N
nmap <Leader>8 <Leader>*
+"" Leader,` opens a scratch buffer, horizontally split
+nnoremap <silent> <Leader>`
+ \ :<C-U>Scratch<CR>
+"" Leader,~ opens a scratch buffer, vertically split
+nnoremap <silent> <Leader>~
+ \ :<C-U>vertical Scratch<CR>
" And last, but definitely not least, I'm required by Vim fanatic law to
" include a mapping that reloads my whole configuration. This uses the