junegunn / vim-easy-align

:sunflower: A Vim alignment plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can not align when suffix of filename is ".c"

lifang2012 opened this issue · comments

hello, i have following lines:

printf("a=aa");
printf("aaa=");

i want to align with "=", when suffix of filename is ".txt", or without suffix, i tryed to align with command vipga *=, got what i expected. but when suffix of filename is ".c", with command vipga *=, it does not work, if i delete the first quotation mark in lines, with following:

printf(a=aa");
printf(aaa=");

then, i try to align with command vipga *=, align ok.
i tried in vim 8.1.374 and nvim v0.3.0, the result is same.
any idea? thanks.