From 5ea2f26efaad0ae9c6e6417bc33631a7e493cd59 Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Tue, 28 Jan 2020 10:05:10 +0000 Subject: [PATCH] rc ctags: Escape backslash in `{\}` faces Using `{\}` in an Awk script results in the following error being printed: ``` awk: cmd. line:18: warning: escape sequence `\}' treated as plain `}' ``` --- rc/tools/ctags.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/tools/ctags.kak b/rc/tools/ctags.kak index b39eeb66..31e67a8f 100644 --- a/rc/tools/ctags.kak +++ b/rc/tools/ctags.kak @@ -57,7 +57,7 @@ define-command -params ..1 \ menu_info = $3; gsub("!", "!!", menu_info); edit_path = path($2); gsub("!", "!!", edit_path); gsub("#", "##", edit_path); gsub("&", "&&", edit_path); gsub("\\|", "||", edit_path); line_number = $3; - out = out "%!" menu_item ": {MenuInfo}{\}" menu_info "! %!evaluate-commands %# try %& edit -existing %|" edit_path "|; execute-keys %|" line_number "gx| & catch %& fail unable to find tag &; try %& execute-keys %|s\\Q" select "| & # !" + out = out "%!" menu_item ": {MenuInfo}{\\}" menu_info "! %!evaluate-commands %# try %& edit -existing %|" edit_path "|; execute-keys %|" line_number "gx| & catch %& fail unable to find tag &; try %& execute-keys %|s\\Q" select "| & # !" } END { print ( length(out) == 0 ? "fail no such tag " ENVIRON["tagname"] : "menu -markup -auto-single " out ) } # Ensure x is an absolute file path, by prepending with tagroot