Andrey Bartashevich

Results 3 comments of Andrey Bartashevich

There are some issues with indenting PascalCase custom tags (e.g. ``), because they are being processed in lower case in indent/html.vim. We need avoid situation when all tags (body, html,...

+1. This problem is occurred in html templates of various frameworks, particularly Vue.js.

I added file ~/.vim/after/plugin/auto-pairs.vim with code: ``` function RusKeymap() setlocal keymap=russian-jcukenwin setlocal iminsert=0 setlocal imsearch=-1 endfunction autocmd BufEnter * :call RusKeymap() ``` And this problem was circumvented.