aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-12-24 15:23:38 -0500
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-12-24 16:06:40 -0500
commit636d3c8149bef6cd78750985f2337648525040fa (patch)
treea28318d32abd83ae029a369d84c159b0fe990d41
parent65ac589b7ffd6bfb5b14cb498678d2125ef3431f (diff)
Make \ insert a backlash in the Kakoune plugin; fix ≥
-rw-r--r--editors/kak/autoload/filetype/bqn.kak4
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/kak/autoload/filetype/bqn.kak b/editors/kak/autoload/filetype/bqn.kak
index c8c7911a..ef94cb71 100644
--- a/editors/kak/autoload/filetype/bqn.kak
+++ b/editors/kak/autoload/filetype/bqn.kak
@@ -73,7 +73,7 @@ map global bqn '~' ':exec i¬<ret>' -docstring '¬ Not | Span'
map global bqn '<' ':exec i≤<ret>' -docstring '≤ | LessOrEqual'
# < < < Enclose | LessThan
# > > > Merge | GreaterThan
-map global bqn '>' ':exec i><ret>' -docstring '> | GreaterOrEqual'
+map global bqn '>' ':exec i≥<ret>' -docstring '≥ | GreaterOrEqual'
# = = = Rank | Equal
map global bqn '/' ':exec i≠<ret>' -docstring '≠ Length | NotEqual'
map global bqn 'm' ':exec i≡<ret>' -docstring '≡ Depth | Match'
@@ -151,6 +151,8 @@ map global bqn '8' ':exec i∞<ret>' -docstring '∞ constant infinity'
# @ @ @ constant null character
# # # # COMMENT
+map global bqn '\' ':exec i\<ret>'
+
# Commands
# ‾‾‾‾‾‾‾‾