Super
Super is a command picker extension for Telescope.
Users can search for Neovim commands using natural language and execute them directly from the Telescope picker.
super.mov
The aim of this plugin is:
- To provide a different interface to executing commands, while keeping a keyboard-focused workflow
- To help users learn the different Ex commands associated with desired actions
This plugin is still experimental, so expect breaking changes and/or funky behaviour.
Installation
This plugin requires you to have Telescope and its required dependencies installed.
Add the following code to your Lazy plugin spec table:
{
"techne98/super.nvim",
config = false
}Using Super
You can open the command picker in command-line mode, for example with :Telescope super.
Example custom keybind:
vim.keymap.set('n', '<leader>p', require('telescope').extensions.super.super)
Contributing
If you would like to add a new command, please open a new issue with your suggestedformat and description.
If everything is good, you can open up a PR and add it to the commands.lua file.
Please do the following when contributing:
- Fork the project
- Create a branch, e.g. git checkout -b my-new-feature
- Commit some changes
- Open a pull request
Thanks!