From acfce336162e30b0a547cee009950aee4b4961b9 Mon Sep 17 00:00:00 2001 From: tenax Date: Wed, 7 Jan 2026 11:44:40 +0530 Subject: [PATCH] Improve Restart REPL icon UX in sidebar Fixes #7 The Restart REPL action in the Haskell Functions sidebar was rendering as large text. This change updates the command configuration to use a VS Code codicon instead, resulting in a cleaner and more consistent sidebar UI. ### Changes - Added a codicon (`refresh`) to the Restart REPL command - Simplified the command title and moved the extension name to the category This is a configuration-only change in `package.json`. --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b8450b5..edd7bca 100644 --- a/package.json +++ b/package.json @@ -51,8 +51,10 @@ }, { "command": "haskellrun.restartRepl", - "title": "Haskell Run: Restart REPL" - }, + "title": "Restart REPL", + "category": "Haskell Run", + "icon": "$(refresh)" + }, { "command": "haskellrun.clearRepl", "title": "Haskell Run: Clear REPL"