vim-leader-guide icon indicating copy to clipboard operation
vim-leader-guide copied to clipboard

Results 15 vim-leader-guide issues
Sort by recently updated
recently updated
newest added

I'm mapped to Since upgrading to vim 8.2, when calling leaderGuide, i get ``` Error detected while processing function leaderGuide#start_by_prefix[19]..17_start_buffer[9]..17_create_string: line 10: E118: Too many arguments for function: 1 E702:...

This allows the user to change the name of a mapping like this: ```viml let g:lmap.s = 'Search' ``` instead of ```viml let g:lmap.s = [':grep ' : 'Search'] ```

I can't seem to figure this plugin out. Am I correct that, without supplying a custom dictionary, this should still show shortcut entries, albiet with raw mappings? Or do you...

I noticed recently that when I make a mistake typing some key combination I sometimes get the leader guide flickering. I have to `Ctrl-C` to stop it, and sometimes it...

Fix for #51. If the input isn't processed immediately, the map is wrong, the input is longer than one character - try again. It's not exactly graceful, but it's functional.

# Environment vim-leader-guide: 8dff63fcc29811bb30fccb135f31ad488a9a6170 VIM 8.1 # How to reproduce minimal .vimrc ```vim set rtp+=~/.vim/plugged/vim-leader-guide syntax on filetype plugin indent on let mapleader = "\" nnoremap :LeaderGuide '' map a...

Hi, A few months ago, I notice a bug with `vim-leader-guide` (https://github.com/ctjhoa/spacevim/issues/32) and I didn't take the time to look at it until now. Here is what I've found. With...

All i need is a single dict for a bunch of custom maps. I've tried this minimal setup ``` let g:lmap = { 'name' : 'Awesome Leader' } nmap R...

Heya, Is it possible to hide a keybinding added to vim-leader-guide? As an example, I want to emulate the Spacemacs behaviour of having commands for ` 1` going to `...

You can toggle it off (just not show the shortcut window) and then reopen it ```vim map lt :LeaderGuideToggle ``` If You just want to use the keyMap and not...