We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I really want to be able to use this plugin but I'm running into an unknown issue -- that or I'm just missing something very obvious.
I'm installing via vim-plug. I'm running on mac (big Sur). I've tried using iterm2 and alacritty terminals.
I have removed all my plugins except for machakann/vim-sandwich.
vim-plug installs without any errors.
Once it installs, I open up a vim window and type foo.
I try running saiw( on foo and I don't get passed typing 's' as I immediately go into insert mode. Is there a configuration step I'm missing?
saiw(
The text was updated successfully, but these errors were encountered:
Could you check the output with executing :nmap sa? If no mapping, the plugin is not installed properly.
:nmap sa
Or could you show me a minimal working vimrc to reproduce the problem?
Sorry, something went wrong.
Found it --
set timeoutlen=100 breaks it.
too fast of a setting.... :)
I see. Then you have several options. One is to set longer 'timeoutlen', another is to give up using s command with
'timeoutlen'
nmap s <Nop> xmap s <Nop>
, or use vim-surround style keymappings if you like it.
No branches or pull requests
I really want to be able to use this plugin but I'm running into an unknown issue -- that or I'm just missing something very obvious.
I'm installing via vim-plug. I'm running on mac (big Sur). I've tried using iterm2 and alacritty terminals.
I have removed all my plugins except for machakann/vim-sandwich.
vim-plug installs without any errors.
Once it installs, I open up a vim window and type foo.
I try running
saiw(
on foo and I don't get passed typing 's' as I immediately go into insert mode. Is there a configuration step I'm missing?The text was updated successfully, but these errors were encountered: