diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-01 12:16:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-01 12:16:37 +0800 |
commit | d7359a87425dc38efda4f74bd580bae9946abe31 (patch) | |
tree | b7537f7e65967d844c150e7ba2f3f7a885b1e012 /src/nvim/main.c | |
parent | 4e6096a67fe9860994be38bcd155e7c47313205e (diff) | |
download | rneovim-d7359a87425dc38efda4f74bd580bae9946abe31.tar.gz rneovim-d7359a87425dc38efda4f74bd580bae9946abe31.tar.bz2 rneovim-d7359a87425dc38efda4f74bd580bae9946abe31.zip |
fix(startup): trigger UIEnter for the correct channel (#25860)
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index c57f0e187a..88d198bfa5 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -589,7 +589,7 @@ int main(int argc, char **argv) apply_autocmds(EVENT_VIMENTER, NULL, NULL, false, curbuf); TIME_MSG("VimEnter autocommands"); if (use_remote_ui) { - do_autocmd_uienter(CHAN_STDIO, true); + do_autocmd_uienter_all(); TIME_MSG("UIEnter autocommands"); } |