From 55853b753200cf01af5d56e098e2a4952f16b1f0 Mon Sep 17 00:00:00 2001 From: Star <73551567+Star69995@users.noreply.github.com> Date: Mon, 8 Jun 2026 11:09:33 +0300 Subject: [PATCH] feat: add RTL extension installation instructions for Claude Code in VSCode --- .claude/commands/learn/setup.md | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/.claude/commands/learn/setup.md b/.claude/commands/learn/setup.md index 6a42b7b..165982e 100644 --- a/.claude/commands/learn/setup.md +++ b/.claude/commands/learn/setup.md @@ -189,3 +189,41 @@ $moduleDest = "$dest\learn" if (!(Test-Path $moduleDest)) { New-Item -ItemType Directory -Force -Path $moduleDest | Out-Null } Copy-Item -Force "$PWD\.claude\commands\learn\*.md" "$moduleDest\" ``` + +--- + +## G. RTL Extension for Claude Code (VSCode) + +First, check if the extension is already installed: + +```powershell +code --list-extensions | Select-String "yechielby.claude-code-rtl" +``` + +**If the extension is already installed:** skip this section entirely — no message needed. + +**If not installed:** use the `AskUserQuestion` tool: + +``` +question: "קיים תוסף VSCode שמשפר את חוויית Claude Code בעברית (RTL). האם להתקין אותו?" +header: "תוסף RTL" +options: + - label: "כן, התקן" + description: "yechielby.claude-code-rtl — משפר תצוגת עברית ב-Claude Code" + - label: "לא תודה" + description: "דלג על שלב זה" +``` + +**If yes:** run the following command and confirm success: + +```powershell +code --install-extension yechielby.claude-code-rtl +``` + +After installing, briefly explain how to use it (in the session language): +- The extension adds an RTL toggle button in the Claude Code panel. +- Click it (or use the command palette: "Toggle RTL") to switch the chat direction to right-to-left. +- Useful when Claude's responses are in Hebrew and the text appears misaligned. +- No restart needed — takes effect immediately. + +**If no:** skip silently.