You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The solution is to consider whether or not such settings should actually be global; if they should be global, change setlocal to set in your vimrc file. Alternatively, if you want certain settings to be set only for certain kinds of buffers, you can use the autocmd command to selectively set settings according to file path pattern and various events. See :help autocmd for more information.
First of all, thanks for your amazing vim plugin!
I've installed jiangmiao/auto-pairs for auto-completing braces, but for some reason, maybe the reason you discussed on README, the plugin doesn't work in vimcoder. I want to make a quick fix by writing something as follow:
if run in vimcoder:
inoremap { {<CR>}<Esc>ko
endif
So, here's the problem. It's there a way to test vimcoder is running?
The text was updated successfully, but these errors were encountered:
First of all, thanks for your amazing vim plugin!
I've installed
jiangmiao/auto-pairs
for auto-completing braces, but for some reason, maybe the reason you discussed on README, the plugin doesn't work in vimcoder. I want to make a quick fix by writing something as follow:So, here's the problem. It's there a way to test vimcoder is running?
The text was updated successfully, but these errors were encountered: