We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b035a7 commit 15adb07Copy full SHA for 15adb07
src/kimi_cli/ui/shell/prompt.py
@@ -591,7 +591,7 @@ def _render_message(self) -> FormattedText:
591
symbol = PROMPT_SYMBOL if self._mode == PromptMode.AGENT else PROMPT_SYMBOL_SHELL
592
if self._mode == PromptMode.AGENT and self._thinking:
593
symbol = PROMPT_SYMBOL_THINKING
594
- return FormattedText([("bold", f"{getpass.getuser()}{symbol} ")])
+ return FormattedText([("bold", f"{getpass.getuser()}@{Path.cwd().name}{symbol} ")])
595
596
def _apply_mode(self, event: KeyPressEvent | None = None) -> None:
597
# Apply mode to the active buffer (not the PromptSession itself)
0 commit comments