Kronuz / TextMarker

🖍 Text Marker (Highlighter) highlights words in Sublime Text
MIT License
22 stars 7 forks source link

Custom Mapping #3

Open FrannRod opened 5 years ago

FrannRod commented 5 years ago

It'd be nice for user to be able to change the mapping, as Alt+Space does another thing in Ubuntu/Linux and therefore I'm unable to highlight text.

conradmcha commented 5 years ago

I'm on Windows and already using Alt+Space for Wox Launcher

melody26613 commented 4 years ago

I have the same problem on Ubuntu, so I modify Default.sublime-keymap setting to use ctrl+space like followings [ { "keys": [ "ctrl+space" ], "command": "text_marker", }, { "keys": [ "ctrl+escape" ], "command": "text_marker_clear" } ]

You can try this method.

Kronuz commented 4 years ago

Can someone please make a tested PR with the working keymap for Linux only? :)

rwxguo commented 4 years ago

I'm on windows, use the following keymap as highlighting words is not a frequent action as copy/paste does :

{ "keys": ["ctrl+super+j"], "command": "text_marker" },
{ "keys": ["ctrl+super+h"], "command": "text_marker_clear" },