aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/quickfix_auto_open.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-26 19:20:22 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-26 19:20:22 +1200
commit7ebefe15c2765c5aaa7b01085506cfbbd98146d4 (patch)
tree5bdaf5a21635b39163f9eae86d720852bf8ec239 /vim/plugin/quickfix_auto_open.vim
parentMerge branch 'release/v1.40.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-7ebefe15c2765c5aaa7b01085506cfbbd98146d4.tar.gz
dotfiles-7ebefe15c2765c5aaa7b01085506cfbbd98146d4.zip
Merge branch 'release/v1.41.0'v1.41.0
* release/v1.41.0: Bump VERSION Move NeoVim-specific config to subfile Set 'noruler' in .vimrc Set 'ttymouse' silently Correct VIMRC path for NeoVim install target Stamp down three new ShellCheck 0.5.0 errors Update colon_operator.vim plugin Remove & remaps Spin quickfix_auto_open.vim out into a plugin
Diffstat (limited to 'vim/plugin/quickfix_auto_open.vim')
-rw-r--r--vim/plugin/quickfix_auto_open.vim22
1 files changed, 0 insertions, 22 deletions
diff --git a/vim/plugin/quickfix_auto_open.vim b/vim/plugin/quickfix_auto_open.vim
deleted file mode 100644
index e2f111fb..00000000
--- a/vim/plugin/quickfix_auto_open.vim
+++ /dev/null
@@ -1,22 +0,0 @@
-"
-" quickfix_auto_open.vim: Always pop open the quickfix list or location list
-" when they're changed. Dispassionately stolen from romainl's minivimrc.
-"
-" Author: Tom Ryder <tom@sanctum.geek.nz>
-" License: Same as Vim itself
-"
-if exists('g:loaded_quickfix_auto_open') || &compatible
- finish
-endif
-if !exists('##QuickfixCmdPost') || !exists('##VimEnter')
- finish
-endif
-let g:loaded_quickfix_auto_open = 1
-
-" Always pop open quickfix and location lists when changed
-augroup quickfix_auto_open
- autocmd!
- autocmd QuickfixCmdPost [^l]* cwindow
- autocmd QuickfixCmdPost l* lwindow
- autocmd VimEnter * cwindow
-augroup END