-
Notifications
You must be signed in to change notification settings - Fork 111
set g:vim_json_syntax_conceal = 0 in insert mode #23
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
This is working for me in my vimrc: autocmd InsertEnter *.json setlocal conceallevel=2 concealcursor=
autocmd InsertLeave *.json setlocal conceallevel=2 concealcursor=inc You can probably do away with the I'm using the |
This is one messy interaction that is kind of inherent to the overeager I think the best solution if you're using
in your (An intermediate step could be The code that @appleYaks gives also works (no need for the |
@elzr thanks for researching this! |
.. vim-indentline. Thanks: elzr/vim-json#23
Thanks for your explanation, it worked with a different string for me: |
Is it possible to disable concealing entirely when entering insert mode? If so, how? I played around with
autocmd
in my .vimrc but couldn't figure it out.The InsertEnter and InsertLeave hooks might be helpful.
The text was updated successfully, but these errors were encountered: