can now drop files to open them

in order to open a file if there’s changes in current buffer, a user should have `set hidden` in his/her vimrc
macos-click-through
exoticus 4 years ago
parent ce63064b38
commit b80bad8e6d

@ -21,6 +21,7 @@ pub enum UiCommand {
position: (u32, u32),
},
Drag(u32, u32),
FileDrop(String),
FocusLost,
FocusGained,
Quit,
@ -74,6 +75,9 @@ impl UiCommand {
.expect("Focus Gained Failed"),
UiCommand::Quit => {
nvim.command("qa!").await.ok(); // Ignoring result as it won't succeed since the app closed.
},
UiCommand::FileDrop(path) => {
nvim.command(format!("e {}", path).as_str()).await.ok();
}
}
}

@ -454,6 +454,9 @@ pub fn ui_loop() {
for event in event_pump.poll_iter() {
match event {
Event::Quit { .. } => window.handle_quit(),
Event::DropFile { filename, ..} => {
BRIDGE.queue_command(UiCommand::FileDrop(filename));
}
Event::KeyDown {
keycode: received_keycode,
..

Loading…
Cancel
Save