chrishrb / gx.nvim

Implementation of gx without the need of netrw
Apache License 2.0
186 stars 19 forks source link

fix: don't create select mode keymap #34

Closed mawkler closed 9 months ago

mawkler commented 9 months ago

The option v actually creates a mapping in visual and select mode. This is a common mistake. x is used for setting it only in visual mode.

Select mode is most commonly interacted with in snippets.

chrishrb commented 9 months ago

oh, didn‘t know that. After some research on the internet, this totally makes sense - thank you! 👍