diff options
author | Teddy Wing | 2019-05-17 20:51:55 +0200 |
---|---|---|
committer | Teddy Wing | 2019-05-17 20:51:55 +0200 |
commit | 7d2e4fb741f9d99186bb0dd740f26cc853f69d7d (patch) | |
tree | ae61421c26c1273f210e8d5eb320b253d5dbfb58 /bundle/diff-corrections | |
parent | 374c5af58460f437cfaef093ed9f7347b210a5da (diff) | |
download | dotvim-7d2e4fb741f9d99186bb0dd740f26cc853f69d7d.tar.bz2 |
plugin/diff_corrections.vim: Increase 'tabpagemax' to 200
The default is 10. Set it to a ridiculously large number so that we can
open one tab per file during a code review.
Diffstat (limited to 'bundle/diff-corrections')
-rw-r--r-- | bundle/diff-corrections/plugin/diff_corrections.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bundle/diff-corrections/plugin/diff_corrections.vim b/bundle/diff-corrections/plugin/diff_corrections.vim index 858537e..56b7ec3 100644 --- a/bundle/diff-corrections/plugin/diff_corrections.vim +++ b/bundle/diff-corrections/plugin/diff_corrections.vim @@ -3,3 +3,6 @@ augroup diff_corrections autocmd BufEnter * call diff_corrections#Run() augroup END + + +set tabpagemax=200 |