summaryrefslogtreecommitdiff
path: root/plugin/help.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/help.vim')
-rw-r--r--plugin/help.vim16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugin/help.vim b/plugin/help.vim
new file mode 100644
index 0000000..9e1c998
--- /dev/null
+++ b/plugin/help.vim
@@ -0,0 +1,16 @@
1" Only apply to .txt files...
2augroup HelpInTabs
3 autocmd!
4 autocmd BufEnter *.txt call HelpInNewTab()
5augroup END
6
7" Only apply to help files...
8function! HelpInNewTab ()
9 if &buftype == 'help' && g:help_in_tabs
10 "Convert the help window to a tab...
11 execute "normal \<C-W>T"
12 endif
13endfunction
14
15let g:help_in_tabs = 1
16