From 2ce1ff0a2ca80fee6edfebc55d2e3c9f86baec35 Mon Sep 17 00:00:00 2001 From: Stef van Wijchen Date: Tue, 12 Nov 2024 16:22:17 +0100 Subject: [PATCH] feat: add cursor to vscode string patterns --- linux/kinto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/kinto.py b/linux/kinto.py index a4a80a3..8d1cae6 100755 --- a/linux/kinto.py +++ b/linux/kinto.py @@ -41,7 +41,7 @@ terminals = [term.casefold() for term in terminals] termStr = "|".join(str('^'+x+'$') for x in terminals) -mscodes = ["code","vscodium"] +mscodes = ["code","vscodium","cursor"] codeStr = "|".join(str('^'+x+'$') for x in mscodes) sublimes = ["Sublime_text","subl"]