mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Avoid command execution hooks on closed docs (#3613)
Fixes a panic with a config like: [keys.normal.space] x = [":buffer-close"] by bailing out of the command-execution handling if the document doesn't exist after handling a command.
This commit is contained in:
parent
83f177d270
commit
93c6a337c4
1 changed files with 4 additions and 1 deletions
|
@ -781,7 +781,10 @@ impl EditorView {
|
||||||
|
|
||||||
let mut execute_command = |command: &commands::MappableCommand| {
|
let mut execute_command = |command: &commands::MappableCommand| {
|
||||||
command.execute(cxt);
|
command.execute(cxt);
|
||||||
let doc = cxt.editor.documents.get_mut(&doc_id).unwrap();
|
let doc = match cxt.editor.documents.get(&doc_id) {
|
||||||
|
Some(doc) => doc,
|
||||||
|
None => return,
|
||||||
|
};
|
||||||
let current_mode = doc.mode();
|
let current_mode = doc.mode();
|
||||||
match (last_mode, current_mode) {
|
match (last_mode, current_mode) {
|
||||||
(Mode::Normal, Mode::Insert) => {
|
(Mode::Normal, Mode::Insert) => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue