如何更改 VIM 编辑器中设置标记的行号的颜色?

How to change the color of the line's number where a mark is set in VIM editor?

正如问题所述,我想更改我设置标记的行数的颜色,有没有简单的方法可以做到这一点?我使用的编辑器是 Vim

做不到。

或者,您可以尝试在标记的行上设置一个标志::help sign-support

如果您是一位经验丰富的 VimL 开发人员,这里有一些建议:

像这样定义所需的颜色:

    hi AndreasColor term=reverse cterm=bold ctermfg=White ctermbg=Red guifg=White guibg=Red

定期(参见 :help timer_start)像这样获得所有标记:

let m = execute("marks")

循环标记并突出显示您想要的行:

call matchaddpos("AndreasColor", [<line number>]