Skip to content

👏 A modern generic interactive finder and dispatcher for Vim and NeoVim

License

Notifications You must be signed in to change notification settings

kimusan/vim-clap

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vim-clap

Gitter

Vim-clap is a modern generic interactive finder and dispatcher, based on the newly feature: floating_win of neovim or popup of vim. The goal of vim-clap is to work everywhere out of the box, with fast response.

vim-clap-1024-98

Table of Contents

Features

  • Pure vimscript.
  • Work out of the box, without any extra dependency.
  • Extensible, easy to add new source providers.
  • Find or dispatch anything on the fly, with smart cache strategy.
  • Untouch your current window layout, less eye movement.
  • Support multi-selection, use vim's regexp as filter by default.
  • Support the preview functionality when navigating the result list.

TODOs:

  • Support builtin fuzzy match.
  • Formalize provider args.
  • Add the preview support for more providers.
  • Add the multi-selection support for more providers.
  • More UI layout.

Caveats

  • Vim-clap is in a very early stage, breaking changes and bugs are expected.

  • The Windows support is not fully tested. The providers without using any system related command should work smoothly, that is to say, most sync providers are just able to work. Please create an issue if you run into any error in Windows. And any help would be appreciated.

  • Although a lot of effort has been made to unify the behavior of vim-clap between vim and neovim, and most part works in the same way, it just can't be exactly the same, for floating_win and popup are actually two different things anyway.

  • For Vim users, please map <C-C> to <C-[> if you want <C-C> to close vim-clap otherwise the popup may not closed as expected due to the related event is not triggered.

nnoremap <C-C> <C-[>

Requirement

  • Vim: :echo has('patch-8.1.1967'), tested with 8.1.2052.
  • NeoVim: :echo has('nvim-0.4').

Installation

Plug 'liuchengxu/vim-clap'

Usage

Vim-clap is utterly easy to use, just type, press Ctrl-J/K to locate the wanted entry, and press Enter to apply and exit. The default settings should work well for most people in most cases, but it's absolutely hackable too.

Commands

The paradigm is Clap [provider_id_or_alias] {provider_args}, where the provider_id_or_alias is obviously either the name or alias of provider. Technically the provider_id can be anything that can be used a key of a Dict, but I recommend you using an identifier like name as the provider id, and use the alias rule if you prefer a special name.

Command List Requirement
Clap bcommits! Git commits for the current buffer git
Clap blines Lines in the current buffer none
Clap buffers Open buffers none
Clap colors Colorschemes none
Clap hist: or Clap command_hisotry Command history none
Clap commits ! Git commits git
Clap files Files fd/git/rg/find
Clap filetypes File types none
Clap gfiles or Clap git_files Files managed by git git
Clap grep+ Grep on the fly rg
Clap jumps Jumps none
Clap marks Marks none
Clap tags Tags in the current buffer vista.vim
Clap windows ! Windows none
  • The command with a superscript ! means that it is not yet implemented or not tested.

  • The command with a superscript + means that it supports multi-selection via Tab.

Send a pull request if you want to get your provider listed here.

Global variables

  • g:clap_provider_alias: Dict, if you don't want to invoke some clap provider by its id(name), as it's too long or somehow, you can add an alias for that provider.

    " The provider name is `command_hisotry`, with the following alias config,
    " now you can call it via both `:Clap command_history` and `:Clap hist:`.
    let g:clap_provider_alias = {'hist:': 'command_history'}

The option naming convention for provider is g:clap_provider_{provider_id}_opt.

  • g:clap_provider_grep_delay: delay for actually spawning the grep job in the background.

Movement

  • Use Ctrl-j or Ctrl-k to navigate the result list up and down.
  • Use Ctrl-a to go to the start of the input.
  • Use Ctrl-e to go to the end of the input.
  • Use Ctrl-b to move cursor left one character.
  • Use Ctrl-f to move cursor right one character.
  • Use Enter to select the entry and exit.
  • Use Tab to select multiple entries and open them using the quickfix window.(Need the provider has sink* support)
  • Use Ctrl-t or Ctrl-x, Ctrl-v to open the selected entry in a new tab or a new split.

Execute some code during the process

augroup YourGroup
  autocmd!
  autocmd User ClapOnEnter   call YourFunction()
  autocmd User ClapOnExit    call YourFunction()
augroup END

Change highlights

The default highlights:

hi default link ClapInput   Visual
hi default link ClapDisplay Pmenu
hi default link ClapPreview PmenuSel
hi default link ClapMatches Search

If you want a different highlight for the matches found, try:

hi default link ClapMatches Function

Or:

hi ClapMatches cterm=bold ctermfg=170 gui=bold guifg=#bc6ec5

How to add a new provider

The provider of vim-clap is actually a Dict that specifies the action of your move in the input window. The idea is simple, once you have typed something, the source will be filtered or a job will be spawned, and then the result retrived later will be shown in the dispaly window.

There are generally two kinds of providers in vim-clap.

  1. Sync provider: suitable for these which are able to collect all the items in a short time, e.g., open buffers, command history. It's extremely easy to introduce a new synchoronous clap provider.

  2. Async provider: suitable for the time-consuming jobs, e.g., grep a word in a directory.

Create sync provider

Field Type Required Has default implementation
sink Funcref mandatory No
sink* Funcref optional No
source String/List/Funcref mandatory No
filter Funcref mandatory Yes
on_typed Funcref mandatory Yes
on_move Funcref optional No
on_enter Funcref optional No
on_exit Funcref optional No
  • sink:

    • String: vim command to handle the selected entry.
    • Funcref: reference to function to process the selected entry.
  • sink*: similar to sink*, but takes the list of multiple selected entries as input.

  • source:

    • List: vim List as input to vim-clap.
    • String: external command to generate input to vim-clap (e.g. find .).
    • Funcref: reference to function that returns a List to generate input to vim-clap.
  • filter: given what you have typed, use filter(entry) to evaluate each entry in the display window, when the result is zero remove the item from the current result list. The default implementation is to match the input using vim's regex.

  • on_typed: reference to function to filter or spawn an async job.

  • on_move: when navigating the result list, can be used for the preview purpose, see clap/provider/colors.

  • on_enter: when entering the clap window, can be used for recording the current state.

  • on_exit: can be used for restoring the state on start.

You have to provide sink and source option. The source field is indispensable for a synchoronous provider. In another word, if you provide the source option this provider will be seen as a sync one, which means you could use the default on_typed implementation of vim-clap.

Create async provider

Field Type Required Has default implementation
sink funcref mandatory No
on_typed funcref mandatory No
on_move funcref optional No
on_enter funcref optional No
jobstop funcref mandatory No
  • jobstop: Reference to function to stop the current job of a async provider.

You must provide sink, on_typed and jojbstop option. It's a bit of complex to write an asynchornous provider, you should take care of the job control as well as the display update. Take clap/provider/grep.vim for a reference.

Register provider

Vim-clap will try to load the providers with convention.

  • vimrc

Define g:clap_provider_{provider_id} in your vimrc, e.g.,

" `:Clap quick_open` to open some dotfiles quickly.
let g:clap_provider_quick_open = {
      \ 'source': ['~/.vimrc', '~/.spacevim', '~/.bashrc', '~/.tmux.conf'],
      \ 'sink': 'e',
      \ }
  • autoload

g:clap#provider#{provider_id}#. See :h autoload and clap/provider.

Contribution

Vim-clap is still in beta. Any kinds of contributions are highly welcome.

If you would like to see support for more providers or share your own provider, please create an issue or create a pull request.

If you'd liked to discuss the project more directly, check out .

Credit

  • Vim-clap is initially enlightened by snails.
  • Some providers' idea and code are borrowed from fzf.vim.

MIT

About

👏 A modern generic interactive finder and dispatcher for Vim and NeoVim

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vim Script 100.0%