From cca90d115f79537d4a086934b33e6a86ea0f0e82 Mon Sep 17 00:00:00 2001 From: Brandon Kiser Date: Thu, 15 May 2025 09:49:08 -0700 Subject: [PATCH] fix: default chat edit mode to Emacs, feed.json mcp subcommand copy --- crates/chat-cli/src/cli/chat/prompt.rs | 2 +- feed.json | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/chat-cli/src/cli/chat/prompt.rs b/crates/chat-cli/src/cli/chat/prompt.rs index 1b36d041f5..b84af4bcdf 100644 --- a/crates/chat-cli/src/cli/chat/prompt.rs +++ b/crates/chat-cli/src/cli/chat/prompt.rs @@ -273,7 +273,7 @@ pub fn rl( ) -> Result> { let edit_mode = match database.settings.get_string(Setting::ChatEditMode).as_deref() { Some("vi" | "vim") => EditMode::Vi, - _ => EditMode::Vi, + _ => EditMode::Emacs, }; let config = Config::builder() .history_ignore_space(true) diff --git a/feed.json b/feed.json index 56f61bc7e6..e1028d1b1e 100644 --- a/feed.json +++ b/feed.json @@ -22,7 +22,7 @@ }, { "type": "added", - "description": "Persistent conversations by working directory in `q chat` - [#1767](https://github.com/aws/amazon-q-developer-cli/pull/1767)" + "description": "Persistent conversations by working directory with `q chat --resume` - [#1767](https://github.com/aws/amazon-q-developer-cli/pull/1767)" }, { "type": "added", @@ -40,6 +40,10 @@ "type": "added", "description": "Commands `/save` and `/load` for saving and loading conversation state in `q chat` - [#1762](https://github.com/aws/amazon-q-developer-cli/pull/1762)" }, + { + "type": "added", + "description": "A new subcommand `q mcp` for updating MCP server configuration - [#1836](https://github.com/aws/amazon-q-developer-cli/pull/1836)" + }, { "type": "added", "description": "An improved `/context show --expand` in `q chat` - [#1762](https://github.com/aws/amazon-q-developer-cli/pull/1762)"