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
| remove Lock = Caps_Lock | |
| remove Control = Control_L | |
| keysym Control_L = Caps_Lock | |
| keysym Caps_Lock = Control_L | |
| add Lock = Caps_Lock | |
| add Control = Control_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
| ; New version based on author fwompner gmail com in the Vim wiki | |
| ; https://vim.fandom.com/wiki/Map_caps_lock_to_escape_in_Windows#AutoHotkey | |
| #Requires AutoHotkey v2.0 | |
| #SingleInstance | |
| SetCapsLockState "AlwaysOff" | |
| *Capslock:: | |
| { |
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
| { | |
| "name": "myapp", | |
| "private": true, | |
| "version": "0.0.1", | |
| "scripts": { | |
| "watch:compile-tests": "tsc -w", | |
| "watch:tests": "ava --watch", | |
| "test": "ava", | |
| "lint": "tsc --noEmit", | |
| "prepare": "npm run lint && webpack --mode production", |
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
| { | |
| "name": "myapp", | |
| "private": true, | |
| "version": "0.0.1", | |
| "scripts": { | |
| "watch:compile-tests": "tsc -w", | |
| "watch:tests": "ava --watch", | |
| "test": "ava", | |
| "lint": "tsc --noEmit", | |
| "prepare": "npm run lint && webpack --mode production", |
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
Show hidden characters
| { | |
| "references": [ | |
| { "path": "./package-one" }, | |
| { "path": "./package-two" } | |
| ], | |
| "files": [] | |
| } |
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
| { | |
| "compilerOptions": { | |
| "target": "ES6", | |
| "module": "CommonJS", | |
| "outDir": "./lib", | |
| "rootDir": "./src", | |
| "composite": true, | |
| "paths": { | |
| "package-one": ["../package-one"] | |
| }, |
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
| function fac(n: number) { | |
| return match (n) { | |
| 1 | 0 => 1, | |
| _ => n * fac(n-1), | |
| } | |
| } |
NewerOlder