mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-01 16:56:38 +02:00
- Added in ^C sigint for chromebooks in code editors
This commit is contained in:
@@ -9,7 +9,7 @@
|
|||||||
; https://www.autohotkey.com/boards/viewtopic.php?t=9501
|
; https://www.autohotkey.com/boards/viewtopic.php?t=9501
|
||||||
OnMessage(0x404, "AHK_NOTIFYICON")
|
OnMessage(0x404, "AHK_NOTIFYICON")
|
||||||
|
|
||||||
AHK_NOTIFYICON(wParam, lParam)
|
AHK_NOTIFYICON(wParam, lParam)
|
||||||
{
|
{
|
||||||
if (lParam = 0x202) { ; user left-clicked tray icon
|
if (lParam = 0x202) { ; user left-clicked tray icon
|
||||||
;ADD ANY SUBROUTINE OR FUNCTION HERE
|
;ADD ANY SUBROUTINE OR FUNCTION HERE
|
||||||
@@ -396,6 +396,8 @@ GroupAdd, intellij, ahk_exe idea64.exe
|
|||||||
$^Space::Send ^{Esc}
|
$^Space::Send ^{Esc}
|
||||||
|
|
||||||
#IfWinActive ahk_group intellij
|
#IfWinActive ahk_group intellij
|
||||||
|
; $#c::Send ^{c} ; Default - Sigints interrupt
|
||||||
|
; $!c::Send ^{c} ; CB/IBM
|
||||||
; General
|
; General
|
||||||
^0::Send !{0} ;Open corresponding tool window
|
^0::Send !{0} ;Open corresponding tool window
|
||||||
^1::Send !{1} ;Open corresponding tool window
|
^1::Send !{1} ;Open corresponding tool window
|
||||||
@@ -549,7 +551,9 @@ GroupAdd, intellij, ahk_exe idea64.exe
|
|||||||
^!Left::send ^{PgUp} ; prev_view
|
^!Left::send ^{PgUp} ; prev_view
|
||||||
Insert::Return ; cancel toggle_overwrite
|
Insert::Return ; cancel toggle_overwrite
|
||||||
^!O::send {Insert} ; toggle_overwrite
|
^!O::send {Insert} ; toggle_overwrite
|
||||||
!c::Return ; cancel toggle_case_sensitive
|
; $#c::Send {Ctrl down}c{Ctrl up} ; Default - Sigints interrupt
|
||||||
|
; !c::Return ; Default - cancel toggle_case_sensitive
|
||||||
|
; $!c::send ^{c} ; CB/IBM - Sigint
|
||||||
^!c::send !{c} ; toggle_case_sensitive
|
^!c::send !{c} ; toggle_case_sensitive
|
||||||
; ^h::Return ; cancel replace
|
; ^h::Return ; cancel replace
|
||||||
^!f::send ^{h} ; replace
|
^!f::send ^{h} ; replace
|
||||||
|
Reference in New Issue
Block a user