-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add Hotkey to vlc-delete #3
Comments
I tried this in the past, but I found no way to do that. Feel free to modify, it's open source ;-) |
It seems that it's not possible to use hotkeys, see https://forum.videolan.org/.... |
On Windows, you can install AutoHotKey v1 and use this script to trigger the menu item (as though you typed #IfWinActive ahk_exe vlc.exe
^Delete::
SendInput {Blind}{Ctrl up}{Delete up}
SendInput {Blind}{Alt down}{i down}{i up}{r down}{r up}{Alt up} |
For AutoHotKey v2, you can use this one. #Requires AutoHotkey v2.0
#HotIf WinActive("ahk_exe vlc.exe")
^Delete:: {
Send("{Blind}{Ctrl up}{Delete up}")
Send("{Blind}{Alt down}{i down}{i up}{r down}{r up}{Alt up}")
}
#HotIf |
@DanKaplanSES, @abramter: I placed the snippet into the doc, see 94c6e4e |
Can we add a hotkey to vlc-delete ?
The text was updated successfully, but these errors were encountered: