@@ -96,6 +96,7 @@ const (
9696 actionAlignFormat = "align_format"
9797 actionRawFormat = "raw_format"
9898 actionRuler = "toggle_ruler"
99+ actionUnHighlight = "un_highlight"
99100 actionStatusLine = "status_line"
100101
101102 // Change Display with Input
@@ -227,6 +228,7 @@ func (root *Root) handlers() map[string]func(context.Context) {
227228 actionAlignFormat : root .alignFormat ,
228229 actionRawFormat : root .rawFormat ,
229230 actionRuler : root .toggleRuler ,
231+ actionUnHighlight : root .unHighlight ,
230232 actionStatusLine : root .toggleStatusLine ,
231233
232234 // Change Display with Input
@@ -431,6 +433,7 @@ var keyBindDescriptions = []KeyBindDescription{
431433 {Group : GroupChange , Action : actionAlignFormat , Description : "align columns" },
432434 {Group : GroupChange , Action : actionRawFormat , Description : "toggle raw output mode" },
433435 {Group : GroupChange , Action : actionRuler , Description : "ruler toggle" },
436+ {Group : GroupChange , Action : actionUnHighlight , Description : "unhighlight search results until the next search" },
434437 {Group : GroupChange , Action : actionStatusLine , Description : "status line toggle" },
435438 {Group : GroupChange , Action : actionStyleToggle , Description : "suppress style highlight by number" },
436439
0 commit comments