Skip to content

Instantly share code, notes, and snippets.

@ytlm
Created July 13, 2020 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ytlm/31739af2d57b42ebf2c9faefbf22d7a2 to your computer and use it in GitHub Desktop.
Save ytlm/31739af2d57b42ebf2c9faefbf22d7a2 to your computer and use it in GitHub Desktop.
vim中json文件中双引号被隐藏的问题
```shell
:verbose set conceallevel
```
verbose命令可以查看是哪个插件设置的这个值
如果直接禁用可以设置
let g:indentLine_conceallevel = 0
```shell
autocmd FileType json,markdown let g:indentLine_conceallevel=0
autocmd FileType javascript,python,c,cpp,java,vim,shell let g:indentLine_conceallevel=2
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment