Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kien/tabman.vim
Tab management for Vim
https://github.com/kien/tabman.vim
Last synced: 3 days ago
JSON representation
Tab management for Vim
- Host: GitHub
- URL: https://github.com/kien/tabman.vim
- Owner: kien
- Created: 2011-11-20T16:19:58.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-05-07T06:52:24.000Z (6 months ago)
- Last Synced: 2024-08-01T16:44:14.505Z (3 months ago)
- Language: VimL
- Homepage:
- Size: 99.6 KB
- Stars: 194
- Watchers: 6
- Forks: 8
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- my-awesome-github-stars - kien/tabman.vim - Tab management for Vim (Vim Script)
README
# tabman.vim - Tab management for Vim
This plugin provides a convenient way to navigate between tabs and the windows
they contain. Features include (but not limited to) jumping to a specific
window opened in another tab; closing tabs, buffers or windows anywhere without
switching to them.Screenshot:
![tabman][1]
## Usage
* Press `mt` or run `:TMToggle` to toggle TabMan.
* Press `mf` or run `:TMFocus` to give focus to/open the TabMan window.## Options
* Change the default mappings:```vim
let g:tabman_toggle = 'mt'
let g:tabman_focus = 'mf'
```* Change the width of the TabMan window:
```vim
let g:tabman_width = 25
```* And the position:
```vim
let g:tabman_side = 'left'
```* Set this to 1 to show windows created by plugins, help and quickfix:
```vim
let g:tabman_specials = 0
```* Set this to 0 to disable line numbering in the TabMan window:
```vim
let g:tabman_number = 1
```Once TabMan’s opened, press ? for help on extra keymaps.
[1]: http://i.imgur.com/HnpGG.png