Ecosyste.ms: Awesome

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

https://github.com/fisadev/vim-ctrlp-cmdpalette

Extension for ctrlp.vim, to have a command palette like sublime text 2
https://github.com/fisadev/vim-ctrlp-cmdpalette

Last synced: 7 days ago
JSON representation

Extension for ctrlp.vim, to have a command palette like sublime text 2

Lists

README

        

Vim-CtrlP-CmdPalette
====================

This is an extension for the awesome vim `CtrlP `_ plugin.

This extension adds a new CtrlP command, the ``:CtrlPCmdPalette``, which allows you to find and run vim commands (internal or custom).

Installation
------------

First you will need to have `CtrlP `_ installed and a vim compiled with python support. Once you have that:

* If you use `Vim-plug `_, add this to your plugins list: ``Plug 'fisadev/vim-ctrlp-cmdpalette'``.
* If you use `Vundle `_, add this to your bundles list: ``Bundle 'fisadev/vim-ctrlp-cmdpalette'``.
* If you use `Patogen `_, clone this repo inside your bundles dir.

Done! Now you can call ``:CtrlPCmdPalette``, or map it to a keybinding :)

Options
-------
If you want the selected command to be executed by default, add this to your .vimrc

``let g:ctrlp_cmdpalette_execute = 1``

Thanks
------
Special thanks to the creator of `this plugin `_, which allowed me to learn how to extend CtrlP.