Neovim .6.1
Got this line:
add_post_meta($this->cmr_id, 'intro_paragraph', 'Hello');
With:
add_post_meta($this->cmr_id, 'intro_paragraph', 'Hello');
^ cursor here
Hitting '%' key jumps to opening paren as expected.
But with:
add_post_meta($this->cmr_id, 'intro_paragraph', 'Hello');
^ cursor here
Nothing happens. If I remove the $, it works.
%which causes an issue (How to debug a mapping). EDIT: Or it is a filetype issue. It would be worth checking that the issue still happens after usingset ft=or if it happens with different filetypes. – statox Feb 22 '22 at 11:14php. That looks like a bug in the matchit plugin when using php... Maybe it would be worth creating an issue on Github. Also @ChristianBrabandt is listed as the maintainer of matchit in the source code, maybe he is the right person to ask this question to. – statox Feb 22 '22 at 11:19