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
Starting with a clean installation + vim-plug.
.config/nvim/init.vim:
.config/nvim/init.vim
call plug#begin('~/.local/share/nvim/plugged') Plug 'junegunn/vim-easy-align' Plug 'parsonsmatt/intero-neovim' call plug#end() nmap ga <Plug>(EasyAlign)
:PlugInstall
Open a file with a haskell extension. E.g: nvim test.hs
nvim test.hs
In normal mode enter ga
ga
Nothing happens so far, because the command is still missing a motion. Like gaip.
gaip
Immediately after ga easy align is activated and a motion following it would be interpreted as commands for easy align.
NVIM 0.1.7 on ArchLinux
I reported the issue to vim-easy-align here.
vim-easy-align
The text was updated successfully, but these errors were encountered:
Well, that's bizarre. I'll try to investigate this.
Sorry, something went wrong.
No branches or pull requests
How to reproduce:
Starting with a clean installation + vim-plug.
.config/nvim/init.vim
::PlugInstall
Open a file with a haskell extension. E.g:
nvim test.hs
In normal mode enter
ga
Expected result:
Nothing happens so far, because the command is still missing a motion. Like
gaip
.Actual result:
Immediately after
ga
easy align is activated and a motion following it would be interpreted as commands for easy align.Version:
NVIM 0.1.7 on ArchLinux
I reported the issue to
vim-easy-align
here.The text was updated successfully, but these errors were encountered: