-
Let's say I have an input like this: In vscode, I could select text with arrow keys + shift. Can I somehow select the text in the input with noice.nvim? |
Beta Was this translation helpful? Give feedback.
Answered by
ilias777
May 25, 2024
Replies: 1 comment
-
If you have a keybinding to exit insert mode like: yank.mov |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Demianeen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you have a keybinding to exit insert mode like:
vim.keymap.set('i', 'kj', '<esc>')
, you can enter normal mode with this keybinding and than you can yank the text you want.yank.mov