Commit: runtime(2html): Make links use color scheme colors in TOhtml

3 views
Skip to first unread message

Christian Brabandt

unread,
Nov 2, 2024, 2:00:10 PM11/2/24
to vim...@googlegroups.com
runtime(2html): Make links use color scheme colors in TOhtml

Commit: https://github.com/vim/vim/commit/b256221e8377abba3c121d612c559006a9233052
Author: Max Bernstein <tekkn...@gmail.com>
Date: Sat Nov 2 18:48:53 2024 +0100

runtime(2html): Make links use color scheme colors in TOhtml

The browser-default dark blue/purple colors don't fit in with most color
schemes and also are unreadable if the color scheme has a dark
background.

closes: #10191

Signed-off-by: Max Bernstein <tekkn...@gmail.com>
Signed-off-by: Christian Brabandt <c...@256bit.org>

diff --git a/runtime/syntax/2html.vim b/runtime/syntax/2html.vim
index f3ce8bed8..ca40810e8 100644
--- a/runtime/syntax/2html.vim
+++ b/runtime/syntax/2html.vim
@@ -1,6 +1,6 @@
" Vim syntax support file
" Maintainer: Ben Fritz <fritzo...@gmail.com>
-" Last Change: 2023 Sep 05
+" Last Change: 2024 Nov 02
"
" Additional contributors:
"
@@ -1843,6 +1843,10 @@ if s:settings.use_css && !s:settings.no_doc
" default font size for different elements
call append('.', '* { font-size: 1em; }')
+
+ " use color scheme styles for links
+ " browser-default blue/purple colors for links don't look like the existing theme and are unreadable on dark backgrounds
+ call append('.', 'a { color: inherit; }')
+ +
" if we use any input elements for unselectable content, make sure they look
" like normal text
if !empty(s:settings.prevent_copy)
Reply all
Reply to author
Forward
0 new messages