Skip to content

Commit c333c0f

Browse files
fix: default chat edit mode to Emacs, feed.json mcp subcommand copy (#1848)
1 parent 74956b0 commit c333c0f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

crates/chat-cli/src/cli/chat/prompt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ pub fn rl(
273273
) -> Result<Editor<ChatHelper, DefaultHistory>> {
274274
let edit_mode = match database.settings.get_string(Setting::ChatEditMode).as_deref() {
275275
Some("vi" | "vim") => EditMode::Vi,
276-
_ => EditMode::Vi,
276+
_ => EditMode::Emacs,
277277
};
278278
let config = Config::builder()
279279
.history_ignore_space(true)

feed.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
{
2424
"type": "added",
25-
"description": "Persistent conversations by working directory in `q chat` - [#1767](https://github.com/aws/amazon-q-developer-cli/pull/1767)"
25+
"description": "Persistent conversations by working directory with `q chat --resume` - [#1767](https://github.com/aws/amazon-q-developer-cli/pull/1767)"
2626
},
2727
{
2828
"type": "added",
@@ -40,6 +40,10 @@
4040
"type": "added",
4141
"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)"
4242
},
43+
{
44+
"type": "added",
45+
"description": "A new subcommand `q mcp` for updating MCP server configuration - [#1836](https://github.com/aws/amazon-q-developer-cli/pull/1836)"
46+
},
4347
{
4448
"type": "added",
4549
"description": "An improved `/context show --expand` in `q chat` - [#1762](https://github.com/aws/amazon-q-developer-cli/pull/1762)"

0 commit comments

Comments
 (0)