mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-06 19:08:27 +02:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
139cff181f | ||
![]() |
d642966ba8 | ||
![]() |
7fe35cdec3 | ||
![]() |
e702e461ac | ||
![]() |
45e637a2a6 | ||
![]() |
a4dca21c22 |
@@ -111,6 +111,9 @@ GroupAdd, ConEmu, ahk_exe ConEmu.exe
|
|||||||
GroupAdd, ConEmu, ahk_exe ConEmu64.exe
|
GroupAdd, ConEmu, ahk_exe ConEmu64.exe
|
||||||
GroupAdd, ConEmu, ahk_exe WindowsTerminal.exe
|
GroupAdd, ConEmu, ahk_exe WindowsTerminal.exe
|
||||||
|
|
||||||
|
GroupAdd, ExcPaste, ahk_exe Cmd.exe
|
||||||
|
GroupAdd, ExcPaste, ahk_exe mintty.exe
|
||||||
|
|
||||||
GroupAdd, editors, ahk_exe sublime_text.exe
|
GroupAdd, editors, ahk_exe sublime_text.exe
|
||||||
GroupAdd, editors, ahk_exe VSCodium.exe
|
GroupAdd, editors, ahk_exe VSCodium.exe
|
||||||
GroupAdd, editors, ahk_exe Code.exe
|
GroupAdd, editors, ahk_exe Code.exe
|
||||||
@@ -118,6 +121,10 @@ GroupAdd, editors, ahk_exe Code.exe
|
|||||||
GroupAdd, browsers, ahk_exe chrome.exe
|
GroupAdd, browsers, ahk_exe chrome.exe
|
||||||
GroupAdd, browsers, ahk_exe opera.exe
|
GroupAdd, browsers, ahk_exe opera.exe
|
||||||
GroupAdd, browsers, ahk_exe firefox.exe
|
GroupAdd, browsers, ahk_exe firefox.exe
|
||||||
|
; Disable Key Remapping for Virtual Machines
|
||||||
|
; Disable for Remote desktop solutions too
|
||||||
|
GroupAdd, virtm, ahk_exe VirtualBoxVM.exe
|
||||||
|
|
||||||
; Disabled Edge for now - no ability to close all instances
|
; Disabled Edge for now - no ability to close all instances
|
||||||
; GroupAdd, browsers, Microsoft Edge ahk_class ApplicationFrameWindow
|
; GroupAdd, browsers, Microsoft Edge ahk_class ApplicationFrameWindow
|
||||||
|
|
||||||
@@ -129,6 +136,10 @@ GroupAdd, vstudio, ahk_exe devenv.exe
|
|||||||
GroupAdd, intellij, ahk_exe idea.exe
|
GroupAdd, intellij, ahk_exe idea.exe
|
||||||
GroupAdd, intellij, ahk_exe idea64.exe
|
GroupAdd, intellij, ahk_exe idea64.exe
|
||||||
|
|
||||||
|
; SetCapsLockState, AlwaysOff ; CB/IBM
|
||||||
|
|
||||||
|
#IfWinNotActive ahk_group virtm
|
||||||
|
|
||||||
; New AltTab and CtrlTab fix
|
; New AltTab and CtrlTab fix
|
||||||
*tab::
|
*tab::
|
||||||
{
|
{
|
||||||
@@ -363,6 +374,8 @@ $^Space::Send ^{Esc}
|
|||||||
|
|
||||||
; Sublime Text Remaps for VS Code
|
; Sublime Text Remaps for VS Code
|
||||||
#IfWinActive ahk_group vscode
|
#IfWinActive ahk_group vscode
|
||||||
|
#p::send {Up} ; Allow for traversing quick list
|
||||||
|
#n::send {Down} ; Allow for traversing quick list
|
||||||
#Space::Send ^{Space} ; Basic code completion
|
#Space::Send ^{Space} ; Basic code completion
|
||||||
; Remap Ctrl+Shift to behave like macOS Sublimetext
|
; Remap Ctrl+Shift to behave like macOS Sublimetext
|
||||||
; Will extend cursor to multiple lines
|
; Will extend cursor to multiple lines
|
||||||
@@ -436,31 +449,45 @@ $^Space::Send ^{Esc}
|
|||||||
#IfWinActive ahk_group terminals
|
#IfWinActive ahk_group terminals
|
||||||
|
|
||||||
; End of Line
|
; End of Line
|
||||||
#e::
|
#e:: ; Default
|
||||||
|
; !e:: ; CB/IBM
|
||||||
Send {End}
|
Send {End}
|
||||||
return
|
return
|
||||||
|
|
||||||
; Beginning of Line
|
; Beginning of Line
|
||||||
#a::
|
#a:: ; Default
|
||||||
|
; !a:: ; CB/IBM
|
||||||
Send {Home}
|
Send {Home}
|
||||||
return
|
return
|
||||||
|
|
||||||
; Copy
|
; Copy
|
||||||
^c::
|
^c::
|
||||||
|
If WinActive("ahk_exe cmd.exe"){
|
||||||
|
Send {Enter}
|
||||||
|
}
|
||||||
|
else if WinActive("ahk_exe mintty.exe"){
|
||||||
|
SetKeyDelay -1
|
||||||
|
Send {Blind}{Insert}
|
||||||
|
}
|
||||||
|
else{
|
||||||
SetKeyDelay -1
|
SetKeyDelay -1
|
||||||
Send {Blind}{LShift down}{c DownTemp}
|
Send {Blind}{LShift down}{c DownTemp}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
|
|
||||||
^c up::
|
^c up::
|
||||||
|
If not WinActive("ahk_group cmd.exe"){
|
||||||
SetKeyDelay -1
|
SetKeyDelay -1
|
||||||
Send {Blind}{c Up}{LShift Up}
|
Send {Blind}{c Up}{LShift Up}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
|
|
||||||
; Sigints - interrupt
|
; Sigints - interrupt
|
||||||
$#c::Send {Ctrl down}c{Ctrl up}
|
$#c::Send {Ctrl down}c{Ctrl up} ; Default
|
||||||
|
; $!c::Send {Ctrl down}c{Ctrl up} ; CB/IBM
|
||||||
|
|
||||||
; Paste
|
; Paste
|
||||||
^v::
|
$^v::
|
||||||
If WinActive("ahk_exe mintty.exe"){
|
If WinActive("ahk_exe mintty.exe"){
|
||||||
Send {Shift down}{Insert}{Shift up}
|
Send {Shift down}{Insert}{Shift up}
|
||||||
}
|
}
|
||||||
@@ -513,3 +540,4 @@ $^Space::Send ^{Esc}
|
|||||||
#y::Send {LCtrl down}y{LCtrl Up}
|
#y::Send {LCtrl down}y{LCtrl Up}
|
||||||
#v::Send {LCtrl down}v{LCtrl Up}
|
#v::Send {LCtrl down}v{LCtrl Up}
|
||||||
#If
|
#If
|
||||||
|
#If
|
Reference in New Issue
Block a user