Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caenrique/nvim-maximize-window-toggle
Toggle to maximize current buffer in a new tab and back
https://github.com/caenrique/nvim-maximize-window-toggle
Last synced: about 2 months ago
JSON representation
Toggle to maximize current buffer in a new tab and back
- Host: GitHub
- URL: https://github.com/caenrique/nvim-maximize-window-toggle
- Owner: caenrique
- License: mit
- Created: 2020-04-17T13:50:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-04-22T15:27:55.000Z (over 4 years ago)
- Last Synced: 2024-08-07T18:47:13.478Z (5 months ago)
- Language: Vim script
- Size: 15.9 MB
- Stars: 21
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Toggles between the current window and the current buffer opened in a new tab page.
## Command
```vim
:ToggleOnly
```You have to define your own key bindings. For example:
```vim
nnoremap o :ToggleOnly
```## Installation
Use your favourite plugin manager. For example, using [Plug](https://github.com/junegunn/vim-plug):
```vim
call plug#begin()
Plug 'caenrique/nvim-maximize-window-toggle'
call plug#end()
```