aboutsummaryrefslogtreecommitdiff
path: root/autoload/cursor.kak
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-10-25 14:22:08 +0530
committerAkshay Nair <phenax5@gmail.com>2025-10-25 14:22:08 +0530
commitbf40ceb853eb590100fe5a82709d8be3b6c59d8d (patch)
treec36da5e5b4b898a90ddef52b7245c6b39e6e9867 /autoload/cursor.kak
parentaded6f2aebaacfd2face07831a76b7a91f76127a (diff)
downloadkakoune-config-bf40ceb853eb590100fe5a82709d8be3b6c59d8d.tar.gz
kakoune-config-bf40ceb853eb590100fe5a82709d8be3b6c59d8d.zip
Disable word under cursor highlighting
Diffstat (limited to 'autoload/cursor.kak')
-rw-r--r--autoload/cursor.kak22
1 files changed, 22 insertions, 0 deletions
diff --git a/autoload/cursor.kak b/autoload/cursor.kak
new file mode 100644
index 0000000..d3abd3b
--- /dev/null
+++ b/autoload/cursor.kak
@@ -0,0 +1,22 @@
+# declare-option -hidden regex curword
+
+# Highlight word under cursor
+# add-highlighter global/ dynregex '%opt{curword}' 0:CurWord
+# hook global NormalIdle .* %{
+# eval -draft %{try %{
+# exec <space><a-i>w <a-k>\A\w+\z<ret>
+# set-option buffer curword "\b\Q%val{selection}\E\b"
+# } catch %{
+# set-option buffer curword ''
+# }}
+# }
+
+# Change cursor face based on mode
+hook global ModeChange .*:.*:insert %{
+ set-face window PrimaryCursor InsertCursor
+ set-face window PrimaryCursorEol InsertCursor
+}
+hook global ModeChange .*:insert:.* %{ try %{
+ unset-face window PrimaryCursor
+ unset-face window PrimaryCursorEol
+} }