diff options
author | Teddy Wing | 2014-05-02 14:43:15 -0400 |
---|---|---|
committer | Teddy Wing | 2014-05-02 14:43:15 -0400 |
commit | a6f5e4c3b0541792b85f61bd48f46658cb801312 (patch) | |
tree | e229ab9359f962b139407f1aa01af559915e77c5 /vimrc | |
parent | cae9397786294391673c6306c1c70a9bab99ea97 (diff) | |
download | dotvim-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-- | vimrc | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |