Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 1.24 KB

README.md

File metadata and controls

54 lines (35 loc) · 1.24 KB

Deprecated

This plugin has been integrated into Denite.

You can use :Denite command_history without this plugin.

vim-denite-command-history

wercker status

vim-denite-command-history is a source for denite.nvim.

This plugin can execute command from ':history' contents.

depends

This plugin depends on:

install

For dein.vim

call dein#add('Shougo/denite.nvim')
call dein#add('pocari/vim-denite-command-history')

usage

:Denite command_history

actions

action description
execute(default) execute selected command
edit_and_execute edit selected command and execute

if you want to change default action

:Denite command_history -default-action=edit_and_execute

custom#vars

example

" ignore command regexp. (note: regexp is python3's regexp)
call denite#custom#var('command_history', 'ignore_command_regexp', [
  '^q'
])