Oleksiy Syvokon
Oleksiy Syvokon
There is an active fork with multiple language support: https://github.com/atc0m/email-reply-parser
@AntoineG92, thanks for reporting the issue! Could you run these two commands in your project's dir: ```bash $ git ls-files --others --exclude-standard | wc -l $ git ls-files --others --exclude-standard...
Okay, that's not what I was suspecting. We'll need to dig deeper. Do you see anything interesting in the Zed log around the time you sent the message? (You can...
Fixed in #31439. Should be in Nightly already, and soon in Preview and Stable. Please re-open this issue if you see the issue again (after the update)
I can reproduce this issue by decreasing Agent's font size and then opening the model selector. https://github.com/user-attachments/assets/15920903-ef70-4519-b9d3-875b7433f9a3
For now, consider adding this to your `keymap.json`: ```json { "context": "Terminal", "bindings": { "alt-d": ["terminal::SendText", "\u001bd"] } } ```
AI panel editor starts in insert mode, while shortcuts like `ctrl-w j` are defined for the normal mode. You can override this by adding this to your `keymap.json`: ```json {...
Defining actions directly is even cleaner: ```json { "context": "MessageEditor > Editor && vim_mode == insert", "bindings": { "ctrl-w ctrl-h": "workspace::ActivatePaneLeft", "ctrl-w h": "workspace::ActivatePaneLeft" // and so on } }...
Glad that it worked! Due to a recent change (#31915), the message editor now opens in Vim's insert mode. In this mode, `ctrl-w` behaves differently -- it's used to delete...
I'm going to close this issue for now as it seems to be solved, and general `ctrl-w h/j/k/l` consistency is another topic.