aboutsummaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorTeddy Wing2014-05-02 14:43:15 -0400
committerTeddy Wing2014-05-02 14:43:15 -0400
commita6f5e4c3b0541792b85f61bd48f46658cb801312 (patch)
treee229ab9359f962b139407f1aa01af559915e77c5 /vimrc
parentcae9397786294391673c6306c1c70a9bab99ea97 (diff)
downloaddotvim-a6f5e4c3b0541792b85f61bd48f46658cb801312.tar.bz2
vimrc: remove setting for `switchbuf=usetab,newtab`
This setting wasn't working for me, particularly when using EasyGrep, so I've decided to remove it.
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc7
1 files changed, 4 insertions, 3 deletions
diff --git a/vimrc b/vimrc
index fafc283..fa0e2ed 100644
--- a/vimrc
+++ b/vimrc
@@ -101,6 +101,10 @@
" 2014.05.02:
" * Add augroup for filetype indentation settings
" * Set gitcommit files to use 2-space indentation
+" * Remove `switchbuf=usetab,newtab` setting because it doesn't work
+" with my current workflow. Now when I use EasyGrep the files opened
+" from the Quickfix window will open in the same tab instead of a new
+" tab, which is less of a surprise and context switch.
"
@@ -138,9 +142,6 @@ set list " Show invisibles by default
set hidden " Don't raise errors when switching buffers with unsaved changes
-" Use tabs for buffers
-set switchbuf=usetab,newtab
-
set timeoutlen=500 " If <leader>bl and <leader>b are both mapped, wait 0.5
" seconds instead of 1 second to fire <leader>b if no l
" is pressed subsequently