From a148b784a51c37fcb25cbda96a32040f476b07f3 Mon Sep 17 00:00:00 2001 From: Sam-Lara Date: Sat, 18 Feb 2023 00:13:55 -0800 Subject: [PATCH 1/2] Added autocomplete functionality for unset --- src/unset.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unset.ts b/src/unset.ts index cdf5e2653a29..3c15eb16d2cb 100644 --- a/src/unset.ts +++ b/src/unset.ts @@ -13,6 +13,7 @@ const environmentVariableGenerator: Fig.Generator = { })), }; +// Implementation of the unset autocomplete spec const completionSpec: Fig.Spec = { name: "unset", description: "Named variable/function shall be undefined", From b6aa03258a5777cef6ef694caaf36fd27646d469 Mon Sep 17 00:00:00 2001 From: Sam-Lara Date: Sat, 18 Feb 2023 19:20:18 -0800 Subject: [PATCH 2/2] feat(fig): add unset completion spec --- src/unset.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unset.ts b/src/unset.ts index 3c15eb16d2cb..01d747291d46 100644 --- a/src/unset.ts +++ b/src/unset.ts @@ -13,7 +13,7 @@ const environmentVariableGenerator: Fig.Generator = { })), }; -// Implementation of the unset autocomplete spec +// unset autocompletion spec const completionSpec: Fig.Spec = { name: "unset", description: "Named variable/function shall be undefined",