aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-07-24 12:28:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-07-24 12:28:33 +1200
commit3ea73b428dbdfb6c687e041b6013a27a0cc097f8 (patch)
treecf81c6867182a2a7fcf93173c8b10ace8a94dabe
parentMerge branch 'release/v7.1.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-3ea73b428dbdfb6c687e041b6013a27a0cc097f8.tar.gz
dotfiles-3ea73b428dbdfb6c687e041b6013a27a0cc097f8.zip
Merge branch 'release/v7.2.0'v7.2.0
* release/v7.2.0: Spin scratch_buffer.vim plugin into a dist Remove an implemented idea from the list
-rw-r--r--.gitmodules3
-rw-r--r--IDEAS.md2
-rw-r--r--VERSION4
-rw-r--r--vim/autoload/scratch_buffer.vim11
m---------vim/bundle/scratch_buffer0
-rw-r--r--vim/plugin/scratch_buffer.vim2
6 files changed, 5 insertions, 17 deletions
diff --git a/.gitmodules b/.gitmodules
index b15ef0dc..e78d89ea 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -53,6 +53,9 @@
[submodule "vim/bundle/replace_operator"]
path = vim/bundle/replace_operator
url = https://sanctum.geek.nz/code/vim-replace-operator.git
+[submodule "vim/bundle/scratch_buffer"]
+ path = vim/bundle/scratch_buffer
+ url = https://sanctum.geek.nz/code/vim-scratch-buffer.git
[submodule "vim/bundle/select_old_files"]
path = vim/bundle/select_old_files
url = https://sanctum.geek.nz/code/vim-select-old-files.git
diff --git a/IDEAS.md b/IDEAS.md
index 2d485ffb..7622dd97 100644
--- a/IDEAS.md
+++ b/IDEAS.md
@@ -32,7 +32,5 @@ Ideas
* I'd like a Git hook that pre-fills out "Version X.Y.Z" if making an annotated
tag named `vX.Y.Z`.
* There's no reason to limit `digraph_search.vim` to insert mode only
-* alternate\_filetype.vim can be spun out into its own repository
* fortune.vim can be spun out into its own repository
* put\_date.vim can be spun out into its own repository
-* scratch\_buffer.vim can be spun out into its own repository
diff --git a/VERSION b/VERSION
index 80bd6fa1..ac296b11 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v7.1.0
-Mon, 22 Jul 2019 13:15:50 +0000
+tejr dotfiles v7.2.0
+Wed, 24 Jul 2019 00:28:31 +0000
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
diff --git a/vim/bundle/scratch_buffer b/vim/bundle/scratch_buffer
new file mode 160000
+Subproject f312e23a3fe5094b79127d8485737fe4438a864
diff --git a/vim/plugin/scratch_buffer.vim b/vim/plugin/scratch_buffer.vim
deleted file mode 100644
index c209c8b1..00000000
--- a/vim/plugin/scratch_buffer.vim
+++ /dev/null
@@ -1,2 +0,0 @@
-command! -bar -count=0 -nargs=* ScratchBuffer
- \ call scratch_buffer#(<q-mods>, <q-count>, <f-args>)