Created
October 3, 2015 23:29
-
-
Save lislon/067b8541360d699fb1c5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| (or (if overriding-terminal-local-map | |
| (FIND-IN overriding-terminal-local-map)) | |
| (if overriding-local-map | |
| (FIND-IN overriding-local-map) | |
| (or (FIND-IN (get-char-property (point) 'keymap)) | |
| (FIND-IN-ANY emulation-mode-map-alists) | |
| (FIND-IN-ANY minor-mode-overriding-map-alist) | |
| (FIND-IN-ANY minor-mode-map-alist) | |
| (if (get-text-property (point) 'local-map) | |
| (FIND-IN (get-char-property (point) 'local-map)) | |
| (FIND-IN (current-local-map))))) | |
| (FIND-IN (current-global-map))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment