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: 11 months ago
JSON representation
Extension for ctrlp.vim, to have a command palette like sublime text 2
- Host: GitHub
- URL: https://github.com/fisadev/vim-ctrlp-cmdpalette
- Owner: fisadev
- Created: 2013-05-29T03:40:51.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2021-09-21T06:27:13.000Z (over 4 years ago)
- Last Synced: 2025-03-24T07:41:40.344Z (11 months ago)
- Language: Vim script
- Size: 31.3 KB
- Stars: 110
- Watchers: 3
- Forks: 9
- Open Issues: 10
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
- stars - fisadev/vim-ctrlp-cmdpalette
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.