mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-08 20:18:09 +03:00
vim: Use explicit global, not default
This commit is contained in:
parent
5c8ff05577
commit
71e519aa3b
@ -40,6 +40,7 @@ fn blurred(EditorBlurred(editor): &EditorBlurred, cx: &mut AppContext) {
|
||||
if let Some(previous_editor) = vim.active_editor.clone() {
|
||||
if previous_editor == editor.clone() {
|
||||
vim.active_editor = None;
|
||||
vim.editor_subscription = None;
|
||||
}
|
||||
}
|
||||
|
||||
@ -50,10 +51,11 @@ fn blurred(EditorBlurred(editor): &EditorBlurred, cx: &mut AppContext) {
|
||||
|
||||
fn released(EditorReleased(editor): &EditorReleased, cx: &mut AppContext) {
|
||||
editor.window().update(cx, |cx| {
|
||||
cx.update_default_global(|vim: &mut Vim, _| {
|
||||
Vim::update(cx, |vim, _| {
|
||||
if let Some(previous_editor) = vim.active_editor.clone() {
|
||||
if previous_editor == editor.clone() {
|
||||
vim.active_editor = None;
|
||||
vim.editor_subscription = None;
|
||||
}
|
||||
}
|
||||
vim.editor_states.remove(&editor.id())
|
||||
|
@ -54,6 +54,7 @@ enum VimEvent {
|
||||
}
|
||||
|
||||
pub fn init(cx: &mut AppContext) {
|
||||
cx.set_global(Vim::default());
|
||||
settings::register::<VimModeSetting>(cx);
|
||||
|
||||
editor_events::init(cx);
|
||||
@ -90,11 +91,11 @@ pub fn init(cx: &mut AppContext) {
|
||||
cx.update_default_global::<CommandPaletteFilter, _, _>(|filter, _| {
|
||||
filter.filtered_namespaces.insert("vim");
|
||||
});
|
||||
cx.update_default_global(|vim: &mut Vim, cx: &mut AppContext| {
|
||||
cx.update_global(|vim: &mut Vim, cx: &mut AppContext| {
|
||||
vim.set_enabled(settings::get::<VimModeSetting>(cx).0, cx)
|
||||
});
|
||||
cx.observe_global::<SettingsStore, _>(|cx| {
|
||||
cx.update_default_global(|vim: &mut Vim, cx: &mut AppContext| {
|
||||
cx.update_global(|vim: &mut Vim, cx: &mut AppContext| {
|
||||
vim.set_enabled(settings::get::<VimModeSetting>(cx).0, cx)
|
||||
});
|
||||
})
|
||||
@ -159,7 +160,7 @@ impl Vim {
|
||||
where
|
||||
F: FnOnce(&mut Self, &mut WindowContext) -> S,
|
||||
{
|
||||
cx.update_default_global(update)
|
||||
cx.update_global(update)
|
||||
}
|
||||
|
||||
fn set_active_editor(&mut self, editor: ViewHandle<Editor>, cx: &mut WindowContext) {
|
||||
|
Loading…
Reference in New Issue
Block a user