hop.nvim icon indicating copy to clipboard operation
hop.nvim copied to clipboard

Neovim motions on speed!

Results 79 hop.nvim issues
Sort by recently updated
recently updated
newest added
trafficstars

```lua require('hop').hint_patterns({}, '\\v^.') ``` This should match the first character in every line, instead it matches every character in the window. Interestingly, the corresponding `\\v.$` *does* work. (NOTE: I know...

bug
reproducible

I'm used to use easymotion in macro, but the key sequence distribution confuse me. example: ``` xxxxxxxxxxxxxxxxx-yyy xx-yy xxxxxx-yyyy xxxxxxxxxxxxxxxxxx-y ``` I want to delete characters before '-'. NOW I...

`hint_word` should be `hint_words` in this [wiki content](https://github.com/phaazon/hop.nvim/wiki/Advanced-Hop#its-hopword-but-only-for-the-current-line)

When writing a macro I like to disable hop (so `f` and similar keys can be predictable) I think adding a convenient command to toggle hop on and off would...

@phaazon This is my attempt for #310. Please review it.

Could we add the option to set `hint_position` to a table of values (e.g. BEGIN, END, MIDDLE)? I have two mappings that hop somewhere on the current line. One for...

This PR fixes FIXME comment in `hint_vertical`.

This commit replaces Neovim's built-in function charcol with functions that is available >= 0.5. charcoal Neovim built-in function is introduced in Neovim 0.7 (see https://github.com/neovim/neovim/commit/6ab71683d14a408e79f7cbda3a07ab65f76c6b35). The get_window_context function in hop.nvim...

As far as I can tell, [hint_position](https://github.com/phaazon/hop.nvim/blob/master/doc/hop.txt#L743) affects both, the placement of the label and where the cursor will jump to. However, if would be useful to be able to...

Fixes https://github.com/phaazon/hop.nvim/issues/312