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
For some reason when jumping out of a block, the indentation gets broken. In a random javascript file (e.g., vim foo.js):
vim foo.js
function() { function() { | } };
If I try to jump at that point (in my case with <C-d>, as per my vimrc: silent! imap <unique> <C-d> <Plug>delimitMateS-Tab) I get:
<C-d>
silent! imap <unique> <C-d> <Plug>delimitMateS-Tab
function() { function() { |} };
I tried this on a vanilla vim installation, on both a javascript and a c file. My config is:
" Delimitmate options let delimitMate_expand_cr = 1 let delimitMate_expand_space = 1 let delimitMate_jump_expansion = 1
I'd appreciate it if you looked into it! Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For some reason when jumping out of a block, the indentation gets broken. In a random javascript file (e.g.,
vim foo.js
):If I try to jump at that point (in my case with
<C-d>
, as per my vimrc:silent! imap <unique> <C-d> <Plug>delimitMateS-Tab
) I get:I tried this on a vanilla vim installation, on both a javascript and a c file. My config is:
I'd appreciate it if you looked into it! Thanks!
The text was updated successfully, but these errors were encountered: