fix(cli): replace hardcoded keybinding strings with dynamic formatters#21159
fix(cli): replace hardcoded keybinding strings with dynamic formatters#21159
Conversation
|
Size Change: +169 B (0%) Total Size: 26 MB ℹ️ View Unchanged
|
9ffed76 to
1ea9c2c
Compare
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the CLI's user experience by making keyboard shortcut displays dynamic rather than hardcoded, allowing for greater flexibility and consistency. Additionally, it resolves an intermittent test failure in the policy engine integration suite, contributing to overall system stability. Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request primarily updates keybinding references across the application, changing the instruction for focusing into the shell from Ctrl+F to Tab. This change is reflected in various system prompt snippets, UI components like InputPrompt.tsx and BaseSettingsDialog.tsx (which now use a formatCommand utility for dynamic keybinding display), and corresponding unit tests and snapshot files. Additionally, integration tests for the policy engine (policy-engine.integration.test.ts) have been enhanced with beforeEach and afterEach hooks to manage environment variables, ensuring better test isolation. The SHELL_PARAM_IS_BACKGROUND constant was also introduced for consistency in prompt generation.
Summary
Replaces hardcoded keyboard shortcut strings in the UI and system prompts with dynamic lookups.
Details
Also fixes a flakiness issue in the policy engine integration tests when
GEMINI_SYSTEM_MDis set.Related Issues
Related to #14425
How to Validate
Paste large text and verify that it shows "Press Ctrl+O to expand pasted text"
Pre-Merge Checklist