Lots of commands available for keybindings in Sublime Merge. Not a comprehensive list, but a decent start.
- exit_blame
- exit_tree_mode
- toggle_search
- hide_command_status
- hide_overlay
const execa = require('execa') | |
const jsf = require('json-schema-faker') | |
;(async () => { | |
const { stdout } = await execa( | |
'./node_modules/.bin/ts-json-schema-generator', | |
[ | |
'--path', | |
'./organizations.ts', | |
'--type', |
The latest beta (3.5) includes separate color settings for light & dark mode. Toggling dark mode automatically switches colors.
Vist iTerm2 homepage or use brew install iterm2-beta
to download the beta. Thanks @stefanwascoding.
switch_automatic.py
to ~/Library/ApplicationSupport/iTerm2/Scripts/AutoLaunch
with:#!/bin/bash | |
set -euo pipefail | |
$REPO_DIR=~/devel | |
repos="1password bitwarden dashlane lastpass opvault passwordbox roboform stickypassword truekey zoho-vault" | |
# pull all repos | |
( | |
for repo in $repos; do | |
echo $repo |
diff --git a/builddefs/common_features.mk b/builddefs/common_features.mk | |
index 18f8b0bbfc..4ef3e230e4 100644 | |
--- a/builddefs/common_features.mk | |
+++ b/builddefs/common_features.mk | |
@@ -878,6 +878,10 @@ ifeq ($(strip $(JOYSTICK_ENABLE)), yes) | |
endif | |
endif | |
+ifeq ($(strip $(APPLE_FN_ENABLE)), yes) | |
+ OPT_DEFS += -DAPPLE_FN_ENABLE |
[ Update 2025-03-24: Commenting is disabled permanently. Previous comments are archived at web.archive.org. ]
Most of the terminal emulators auto-detect when a URL appears onscreen and allow to conveniently open them (e.g. via Ctrl+click or Cmd+click, or the right click menu).
It was, however, not possible until now for arbitrary text to point to URLs, just as on webpages.
I hear no princess in the night | |
But Link hears all her whispers of defenestration | |
Heโs coming in, paraglider flight | |
The sheikah slate reflects the past that guides him toward salvation | |
Got stopped by an old man along the way | |
Hoping to find some long forgotten tech or ancient memories | |
He turned to me as if to say, โHurry boy, sheโs waiting there for you" | |
It's gonna take a lot to clean up all that evil goo | |
There's nothing in a hundred years or more that they could do |
there's a bash script for this now: clirepo
function foo(x,y = function(){ return x; }) { | |
console.log( "a:", x ); | |
var x = 1; | |
console.log( "b:", y() ); | |
} | |
foo(2); |