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
| ; ********************************************************** | |
| ; Version 1.1 - Created by Tolga Balci | |
| ; https://gist.github.com/tolgabalci/7dc138535fb68e3fbe8e25352ed201d8 | |
| ; | |
| ; WINDOWS NAVIGATION KEY SETTINGS FOR DELL XPS LIKE | |
| ; KEYBOARDS WHICH DO NOT HAVE GOOD ACCESS TO HOME/END KEYS | |
| ; | |
| ; Installation: | |
| ; 1) Download & install from https://autohotkey.com/download/ | |
| ; AutoHotkey version 1.1.* Previously known as AutoHotkey_L. |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| namespace tests | |
| { | |
| public static class ExtensionMethods | |
| { | |
| /// <summary> | |
| /// Returns the TimeSpan text in a concise way |
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
| { | |
| "_notes": [ | |
| "=== Hyper Key + Sublayer Design ===", | |
| "", | |
| "Caps Lock is remapped to a Hyper Key (left_shift + cmd + ctrl + opt).", | |
| "Tapped alone, Caps Lock still types Caps Lock (200ms hold).", | |
| "", | |
| "Sublayers work by Hyper + <leader> setting a variable while held,", | |
| "then a second key (no modifiers needed) is checked against that variable.", | |
| "Release the leader to exit the sublayer.", |