vim-pandoc-syntax에서 url을 숨기고 싶습니다.

2367 단어 PandocVim

markdown/vimwiki/pandoc의 syntax 하이라이트



vimwiki의 syntax에서 다음과 같은 링크는
[説明](url)

이와 같이 표시됩니다 (+conceal 옵션이 유효한 경우)

설명

이렇게 하면 URL이 긴 문서에서 가독성이 좋지 않습니다.

예를 들어, blender data blocks 의 기사는 markdown/vimwiki/pandoc 각각의 syntax로
다음과 같이 보입니다.



그런데, 이것을 평상시 사용의 pandoc syntax에서도 사용하고 싶다고 하는 것이 이번의 희망입니다.

결론 : 기본 변수를 설정하십시오.



이제 이것이 대답이었습니다!
문서야! ! ! !
let g:pandoc#syntax#conceal#urls = 1

이것만으로 URL conceal가 활성화되고 vimwiki와 비슷한 모양이됩니다.





덧붙여서 해당 코드는 300-304행 에 있었습니다.
if g:pandoc#syntax#conceal#urls == 1
    syn region pandocReferenceURL matchgroup=pandocOperator start=/\]\@1<=(/ end=/)/ keepend conceal
else
    syn region pandocReferenceURL matchgroup=pandocOperator start=/\]\@1<=(/ end=/)/ keepend
endif

좋은 웹페이지 즐겨찾기