Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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()
```