aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-16 16:55:15 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-16 16:55:15 +1200
commit810cfea9c8a86174c425220ae2c55e8919c9959e (patch)
tree2261421ebe2b2f52c1cc28d5991f39341e330176 /vim/plugin
parentAdd <Leader>,o mapping to :browse :oldfiles (diff)
downloaddotfiles-810cfea9c8a86174c425220ae2c55e8919c9959e.tar.gz
dotfiles-810cfea9c8a86174c425220ae2c55e8919c9959e.zip
Adapt :browse :oldfiles mapping into plugin
Just to avoid a hit-enter prompt by limiting it to just short of the vertical size of the screen, with a temporary array slice of v:oldfiles.
Diffstat (limited to 'vim/plugin')
-rw-r--r--vim/plugin/select_old_files.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/vim/plugin/select_old_files.vim b/vim/plugin/select_old_files.vim
new file mode 100644
index 00000000..dbfbd64c
--- /dev/null
+++ b/vim/plugin/select_old_files.vim
@@ -0,0 +1,6 @@
+if exists('loaded_select_old_files')
+ finish
+endif
+let loaded_select_old_files = 1
+command! -bar SelectOldFiles
+ \ call select_old_files#()