Created
June 1, 2020 16:21
-
-
Save eraserhd/5cf2256bf9bc9b10cc3cdc66b72fc158 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define-command enable-search-highlight %{ try %{ add-highlighter global/search-highlight dynregex '%reg{/}' 0:default,red } } | |
define-command disable-search-highlight %{ try %{ remove-highlighter global/search-highlight } } | |
map global normal / ': enable-search-highlight<ret>/' | |
map global normal ? ': enable-search-highlight<ret>?' | |
map global normal <a-/> ': enable-search-highlight<ret><a-/>' | |
map global normal <a-?> ': enable-search-highlight<ret><a-?>' | |
map global normal n ': enable-search-highlight<ret>n' | |
map global normal N ': enable-search-highlight<ret>N' | |
map global normal <ret> ': disable-search-highlight<ret>' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment