-
Notifications
You must be signed in to change notification settings - Fork 10
Description
https://forum.sublimetext.com/t/solved-i-have-to-do-ctrl-h-h-to-bring-up-find-replace/15972
I have the same problem, the same plugin, and i solved, thanks at your post, i see the problem, finally i unpackage the plugin hextoascii, with instruction by the plugin PackageResourceViewer, "Extract package" and changed the shotcurts keys, in the user folder the file "Default (Linux).sublime-keymap"
how to extract open the control package, ctrl+shit+p = control package, search for PackageResourceViewer and choose Extract
from
[
{"keys": ["ctrl+"]["ctrl+h"], "command": "ascii_to_hex"},
{"keys": ["ctrl+h"]["ctrl+"], "command": "hex_to_ascii"}
]
to
[
{"keys": ["ctrl+shift+h"], "command": "ascii_to_hex"},
{"keys": ["ctrl+alt+h"], "command": "hex_to_ascii"}
]
the path folder under ubuntu linux is "/home/user/.config/sublime-text-3/Packages/hextoASCII/Default (Linux).sublime-keymap"
Greetings