https://github.com/airblade/vim-helptab
Ensure Vim's help docs always open in their own, single tab.
https://github.com/airblade/vim-helptab
Last synced: 5 months ago
JSON representation
Ensure Vim's help docs always open in their own, single tab.
- Host: GitHub
- URL: https://github.com/airblade/vim-helptab
- Owner: airblade
- Created: 2015-07-31T10:07:10.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-27T15:08:26.000Z (over 9 years ago)
- Last Synced: 2025-02-05T14:47:47.084Z (8 months ago)
- Language: VimL
- Size: 1000 Bytes
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# vim-helptab
Ensure the help docs always open in their own, single tab.
Vim's default behaviour is to open a window and display the help file there, or reuse an existing help window. However that disrupts your window layout while the help window is open.
This plugin keeps the help window(s) in their own tab, which you can close when you're ready.
## Installation
If you don't have a preferred installation method, I recommend installing [pathogen.vim](https://github.com/tpope/vim-pathogen), and then copy and paste:
```sh
cd ~/.vim/bundle
git clone git://github.com/airblade/vim-helptab.git
```Or use [voom](https://github.com/airblade/voom) and copy and paste:
```sh
echo 'airblade/vim-helptab' >> ~/.vim/plugins
voom
```## Usage
Just use `:h` as normal.
```viml
:h
```If you want Vim's default help behaviour, use `:he`, `:hel` or `:help`.
## Licence
Copyright Andrew Stewart. Released under the MIT licence.