From dc46eda2794082dcb5583fdcb65f5b48e32960ac Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Fri, 24 Apr 2015 20:34:38 +0100 Subject: [PATCH] Set default MatchingChar face to bold instead of underline --- src/face_registry.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/face_registry.cc b/src/face_registry.cc index 1c373be1..933b6853 100644 --- a/src/face_registry.cc +++ b/src/face_registry.cc @@ -104,7 +104,7 @@ FaceRegistry::FaceRegistry() { "StatusLine", Face{ Colors::Cyan, Colors::Default } }, { "StatusCursor", Face{ Colors::Black, Colors::Cyan } }, { "Prompt", Face{ Colors::Yellow, Colors::Default } }, - { "MatchingChar", Face{ Colors::Default, Colors::Default, Attribute::Underline } }, + { "MatchingChar", Face{ Colors::Default, Colors::Default, Attribute::Bold } }, { "Search", Face{ Colors::Default, Colors::Default, Attribute::Underline } }, } {}