Created
October 10, 2012 04:23
-
-
Save dahu/3863148 to your computer and use it in GitHub Desktop.
Die, Tabs, Die!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " dietabsdie.vim - Reopen new tabs as buffers | |
| " Barry Arthur, 4 June 2010 | |
| function! DieTabsDie() | |
| let tabbufname=expand('%') | |
| tabclose | |
| exe ":b " . expand(tabbufname) | |
| endfunction | |
| autocmd TabEnter * call DieTabsDie() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment