Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dstein64/vim-menu
A plugin providing a console interface to Vim's built-in menu.
https://github.com/dstein64/vim-menu
menu plugin vim
Last synced: 11 days ago
JSON representation
A plugin providing a console interface to Vim's built-in menu.
- Host: GitHub
- URL: https://github.com/dstein64/vim-menu
- Owner: dstein64
- License: mit
- Created: 2020-05-01T03:34:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-17T04:25:37.000Z (8 months ago)
- Last Synced: 2024-10-23T03:27:45.938Z (16 days ago)
- Topics: menu, plugin, vim
- Language: Vim Script
- Homepage:
- Size: 1.12 MB
- Stars: 27
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![build][badge_thumbnail]][badge_link]
# vim-menu
`vim-menu` is a plugin providing a console interface to Vim's built-in menu.
## Requirements
* `vim` or `nvim`
## Installation
A package manager can be used to install `vim-menu`.
Examples* [Vim8 packages][vim8pack]:
- `git clone https://github.com/dstein64/vim-menu ~/.vim/pack/plugins/start/vim-menu`
* [Vundle][vundle]:
- Add `Plugin 'dstein64/vim-menu'` to `~/.vimrc`
- `:PluginInstall` or `$ vim +PluginInstall +qall`
* [Pathogen][pathogen]:
- `git clone --depth=1 https://github.com/dstein64/vim-menu ~/.vim/bundle/vim-menu`
* [vim-plug][vimplug]:
- Add `Plug 'dstein64/vim-menu'` to `~/.vimrc`
- `:PlugInstall` or `$ vim +PlugInstall +qall`
* [dein.vim][dein]:
- Add `call dein#add('dstein64/vim-menu')` to `~/.vimrc`
- `:call dein#install()`
* [NeoBundle][neobundle]:
- Add `NeoBundle 'dstein64/vim-menu'` to `~/.vimrc`
- Re-open vim or execute `:source ~/.vimrc`## Usage
Vim comes with a default set of menu items. `:menu` and `:unmenu` can be used
for adding and removing menu items. See `:help creating-menus` and
`:help delete-menus` for documentation. See `vim-menu`'s documentation for
details on modifying or disabling the default menus.Enter `vim-menu` with `m` or `:Menu`.
* Arrows, `hjkl` keys, and `` are used for selecting and executing menu
items.
* Number keys can be used to jump to items.
* Press `g` followed by a shortcut key to execute the corresponding item.
* Press `K` to show more information for the selected item.
* Press `?` to show a help message.
* Press `` to leave `vim-menu`.See `:help menu-usage` for additional details.
## Documentation
```vim
:help vim-menu
```The underlying markup is in [menu.txt](doc/menu.txt).
Demo
License
-------The source code has an [MIT License](https://en.wikipedia.org/wiki/MIT_License).
See [LICENSE](LICENSE).
[badge_link]: https://github.com/dstein64/vim-menu/actions/workflows/build.yml
[badge_thumbnail]: https://github.com/dstein64/vim-menu/actions/workflows/build.yml/badge.svg
[dein]: https://github.com/Shougo/dein.vim
[neobundle]: https://github.com/Shougo/neobundle.vim
[pathogen]: https://github.com/tpope/vim-pathogen
[vim8pack]: http://vimhelp.appspot.com/repeat.txt.html#packages
[vimplug]: https://github.com/junegunn/vim-plug
[vundle]: https://github.com/gmarik/vundle