From d9626a9d8f9a908ae2580b6765125332c333def8 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Wed, 10 Dec 2025 15:01:57 +0100 Subject: [PATCH] feat(shared-ui): add syntax highlighting to CommandBar input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keywords are now visually highlighted as you type: - Priority (wichtig, dringend, später, normal): orange/warning - Tags (#tag): primary color - References (@project, @calendar): green/success - Dates (heute, morgen, montag, etc.): purple - Times (14:00, um 14 Uhr): purple Uses overlay technique with transparent input over highlighted backdrop. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../src/command-bar/CommandBar.svelte | 124 ++++++++++++++++-- 1 file changed, 113 insertions(+), 11 deletions(-) diff --git a/packages/shared-ui/src/command-bar/CommandBar.svelte b/packages/shared-ui/src/command-bar/CommandBar.svelte index 64db1e251..b28d2c4e7 100644 --- a/packages/shared-ui/src/command-bar/CommandBar.svelte +++ b/packages/shared-ui/src/command-bar/CommandBar.svelte @@ -1,6 +1,47 @@