This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires AutoHotkey v2.0 | |
#SingleInstance Force | |
; Mask windows start menu shortcut (somewhat) without it showing up when holding right mouse button | |
; with this you can still use windows key as shortcut in some applications | |
; without completely disabling windows key + windows+key shortcuts in other solutions | |
; it does not work perfectly in my case as double click LWin, spamming LWin + a bunch of buttons still causes start menu to open | |
; but this works 'well enough', maybe consider it a feature, i don't spam LWin for anything anyway, it's just occasional press and keyboard shortcut | |
; I needed it to not go off while holding right click |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; This is free and unencumbered software released into the public domain. | |
(asdf:defsystem :mqueue | |
:name "mqueue" | |
:description "POSIX message queues for Common Lisp." | |
:version "0.0.0" | |
:author "Arto Bendiken <[email protected]> modified by Akasha" | |
:depends-on (:cffi) | |
:serial t | |
:components ((:file "mqueue"))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sly.el b/sly.el | |
index 0dbd6bbf..006d3934 100644 | |
--- a/sly.el | |
+++ b/sly.el | |
@@ -5509,13 +5509,24 @@ Also mark the window as a debugger window." | |
(let* ((action '(sly-db--display-in-prev-sly-db-window)) | |
(buffer (current-buffer)) | |
(win | |
- (if (cond ((eq sly-db-focus-debugger 'auto) | |
- (eq sly--send-last-command last-command)) |