Disable latex symbol conversion in vim

后端 未结 1 600
故里飘歌
故里飘歌 2021-02-01 18:54

The vim editor on my Kubuntu 13.04 laptop seems to have some advance feature for latex edting, i.e. it can convert latex symbols to unicode chars on the fly and hide the sourc

1条回答
  •  遇见更好的自我
    2021-02-01 19:08

    This functionality is provided by Vim's "conceal" feature.

    Vim's TeX plugin takes advantage of "conceal" if you have set 'conceallevel' to 2. See :h ft-tex-syntax.

    Leave 'conceallevel' at its default value of 0 to disable concealing.

    Alternatively, put the following line in your vimrc.

    let g:tex_conceal = ""
    

    0 讨论(0)
提交回复
热议问题