autohotkey - How to disable Win+F built-in action (not hotkey by it self) and use Win+F in other programs? -


i don't use win+f built-in action open file explorer search panel, use shortcut in "sublime text 2" specifying shortcut action internal key binding mechanism.

i tried this:

#f::return 

but disables win+f, "sublime text 2" can't use it, tried this:

#f:: if winactive("ahk_class px_window_class") {    send {lwin down}{f}{lwin up} } return 

but in "sublime text 2" win+f opens explorer.

can help? thanks

petras

...how make win+f available sublime?

as way:

#if, winactive("ahk_class px_window_class")    #vk46:: ; win+f "toggle_side_bar" command       send, {ctrldown}{vk4b}{vk42}{ctrlup} ; ctrldn+k+b+ctrlup       keywait, vk46       return ;~ #if ; if has hotkey/s below... 

edit:

; ... ; //{ "keys": ["f3"], "command": "find_next" }, ; { "keys": ["super+`"], "command": "find_next" }, ; ...  #vk46::    send, % winactive("ahk_class px_window_class") ? "#{vkc0}":""    keywait, vk46    return 

Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -