From 72ec85825496fecd1974d8822cb0a24101986f0d Mon Sep 17 00:00:00 2001 From: michaelmass <10071388+michaelmass@users.noreply.github.com> Date: Sat, 14 Feb 2026 00:44:56 -0500 Subject: [PATCH 1/2] update --- code/settings.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/code/settings.json b/code/settings.json index 0dbce14..326c228 100644 --- a/code/settings.json +++ b/code/settings.json @@ -270,7 +270,16 @@ "editor.defaultFormatter": "redhat.vscode-yaml" }, "typescript.experimental.useTsgo": false, - "claudeCode.preferredLocation": "panel" + "claudeCode.preferredLocation": "panel", + "json.schemaDownload.trustedDomains": { + "https://schemastore.azurewebsites.net/": true, + "https://raw.githubusercontent.com/": true, + "https://www.schemastore.org/": true, + "https://json.schemastore.org/": true, + "https://json-schema.org/": true, + "https://opencode.ai": true, + "https://models.dev": true + } // "workbench.statusBar.visible": false, // "workbench.editor.showTabs": "none", // "breadcrumbs.filePath": "off", From 5ed601a57955cd58772c927e586dd1c4e3b41037 Mon Sep 17 00:00:00 2001 From: michaelmass <10071388+michaelmass@users.noreply.github.com> Date: Sat, 14 Feb 2026 00:48:30 -0500 Subject: [PATCH 2/2] update --- nushell/init.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nushell/init.nu b/nushell/init.nu index 738eeaa..1d03259 100644 --- a/nushell/init.nu +++ b/nushell/init.nu @@ -318,8 +318,8 @@ def ghprinfo [] { } def ghprexists [] { - let $result = (gh pr view | complete) - return ($result.exit_code == 0) + let $result = (gh pr view --json state --jq .state | complete) + return ($result.exit_code == 0 and ($result.stdout | str trim) == "OPEN") } def ghprcheck [