如何在 vim 笔记中创建超链接?

How to create hyperlinks in vim notes?

This is the note taking plugin in question. I tried using the traditional markdown syntax [displayed text](link here) but it's not working. It is highlighting urls when given like http://vim.org 但我无法以 markdown 样式完成它。

创建 .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