Closed drelephant closed 3 weeks ago
Warning! I am very new to neovim!
I can't get any of the surrounding commands to work.
git clone https://github.com/nvim-lua/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
require 'kickstart.plugins.neo-tree',
nvim
If I type space sk to show keymaps in telescope, it shows a lot of commands for surrounding text (I assume with brackets or quotes).
space sk
eg I'm trying to use sa to add surrounding quotes...
sa
In Normal mode, as soon as I press s, it deletes the character under the cursor and goes into Insert mode.
s
If I'm in Visual mode with a selection, as soon as I press s, it replaces all the selected text with nothing and goes into Insert mode.
How can I access those commands to surround text?
NVIM v0.10.1 Build type: Debug LuaJIT 2.1.1713484068
I'm sure I'm probably doing something dumb.
Thanks!
It may be the timeoutlen option is too short. Try increasing it to 500 and see if that works.
Thanks, that fixed it!!
There's no way I would have ever found that.
Warning! I am very new to neovim!
Describe the bug
I can't get any of the surrounding commands to work.
To Reproduce
git clone https://github.com/nvim-lua/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
require 'kickstart.plugins.neo-tree',
on line 936nvim
If I type
space sk
to show keymaps in telescope, it shows a lot of commands for surrounding text (I assume with brackets or quotes).eg I'm trying to use
sa
to add surrounding quotes...In Normal mode, as soon as I press
s
, it deletes the character under the cursor and goes into Insert mode.If I'm in Visual mode with a selection, as soon as I press
s
, it replaces all the selected text with nothing and goes into Insert mode.How can I access those commands to surround text?
Desktop
Neovim Version
I'm sure I'm probably doing something dumb.
Thanks!