Jan Damm

Results 91 comments of Jan Damm

I was about to write a similar feature request. Two issues I can see here is having the preview open and close when having a list where only some items...

Sorry 😅 Just considering the current line it would be doable already. Scan left from the cursor, count /* and \*/. If count /* is larger scan to right and...

For posterity: This plugin applies its mapping before ctrlp applies its own mappings. So you either have to make sure your key is not in `g:ctrlp_prompt_mappings` or replace the mapping....

Weird, for me the name of the netrw buffer would be`~/Developre/projects/advent/2021` (maybe because I have dirvish installed?). This would then be passed to `vim.fn.pathshorten(vim.fn.fnamemodify(file, ':p:~:t'))` which results in `''`.

I think SW would match well. If you're setting up SwiftLint in your IDE (which is recommended) an Error will fail your compilation, so I'm not sure it would be...

Got it working: ### TAB Seems to only work when a keymap is registered: ```vim call which_key#register('', 'g:which_key_map') let g:which_key_map = {} ``` and it works. ### Space Must be...

I would still consider (at least) the mapping as an issue.

If the sorting function would be configurable `function() return false end` should keep manual sorting.

I'm not a 100% sure but if it works `ipairs` would have to be used instead of `pairs`.

Right, doesn't work with `ipairs`. Providing a custom sorting function would however work.