This is the note taking plugin有问题。我尝试使用传统的markdown语法[显示文本](链接在这里),但它不起作用。当像http://vim.org那样给出时它会突出显示网址,但是我无法用降价方式来实现它。
答案 0 :(得分:1)
使用以下内容创建.vim/after/syntax/notes.vim
syn region urlTitle matchgroup=mkdDelimiter start="\[" end="\]" oneline concealends nextgroup=urlRef
syn region urlRef matchgroup=mkdDelimiter start="(" end=")" oneline conceal contained
hi link urlTitle notesRealURL
hi link urlRef notesRealURL