Skip to content

My fork of the nice customizable popup menu for vim

License

Notifications You must be signed in to change notification settings

vladimir-popov/quickmenu.vim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 

Repository files navigation

About this repo

This is my fork of the skywind3000/quickmenu.vim.
I use this just for fun and experiments.

Install

Copy autoload/quickmenu.vim and syntax/quickmenu.vim to your ~/.vim/autoload and ~/.vim/syntax.

Or use vim-plug to install it just add this line to your plugins section: Plug 'vladimir-popov/quickmenu.vim'.

Configuration

Add these lines to your .vimrc (outside of the plugins section in case of vim-plug):

" choose a favorite key to show/hide quickmenu 
noremap <silent><F12> :call quickmenu#toggle(0)<cr>

" enable cursorline (L) and cmdline help (H) 
let g:quickmenu_options = "HL" 

Tutorial

Add new section

To add a new section to your menu simply use the function below:

function quickmenu#append('#' . '<Section name>') 

The argument of the function here is a name of the section. It must begin from the '#' character, but that character will not be drawen.

Add new item

To add a new item you should use the same function as for adding a new section, but with more arguments and without restiction about '#':

function quickmenu#append(text, action[, help]) 
  • text will be show in the quickmenu, vimscript in %{...} will be evaluated and expanded.
  • action is a piece of vimscript to be executed when a item is selected.
  • help will display in the cmdline if g:quickmenu_options contains H.

A item will be treated as "static text" (unselectable) If action is empty.

Add bookmark

You can add a bookmark to the menu. To do so, use the function:

function quickmenu#bookmark(path[, hook, comment]) 
  • path if this is a path to a file, then it file will be opened; if this is a path to the directory, then this path will be set as the working directory.
  • hook is an optional piece of vimscript to be executed after going to the path.
  • comment will be added to the help.

About

My fork of the nice customizable popup menu for vim

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vim Script 100.0%