You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What Operating System(s) are you seeing this problem on?
Linux X11
Which Wayland compositor or X11 Window manager(s) are you using?
DE: GNOME 46.0
WM: Mutter
WezTerm version
wezterm 20241119-101432-4050072d
Did you try the latest nightly build to see if the issue is better (or worse!) than your current version?
Yes, and I updated the version box above to show the version of the nightly that I tried
Describe the bug
Navigating from nvim pane to wezterm pane happens with about 2 sec delay
To Reproduce
nvim config
localroot=vim.fn.fnamemodify('./.repro', ':p')
-- set stdpaths to use .reprofor_, nameinipairs({ 'config', 'data', 'state', 'cache' }) dovim.env[('XDG_%s_HOME'):format(name:upper())] =root..'/' ..nameend-- bootstrap lazylocallazypath=root..'/plugins/lazy.nvim'ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({
'git',
'clone',
'--filter=blob:none',
'--single-branch',
'https://github.com/folke/lazy.nvim.git',
lazypath,
})
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
-- do not remove the colorscheme! it makes testing nicer'folke/tokyonight.nvim',
'mrjones2014/smart-splits.nvim',
-- add any other pugins here
}
require('lazy').setup(plugins, {
root=root..'/plugins',
})
require('smart-splits').setup({
-- add any options here
})
vim.keymap.set('n', '<C-Left>', require('smart-splits').move_cursor_left)
vim.keymap.set('n', '<C-Down>', require('smart-splits').move_cursor_down)
vim.keymap.set('n', '<C-Up>', require('smart-splits').move_cursor_up)
vim.keymap.set('n', '<C-Right>', require('smart-splits').move_cursor_right)
-- add anything else herevim.opt.termguicolors=true-- do not remove the colorscheme! it makes testing nicervim.cmd([[colorscheme tokyonight]])
mister-choo
changed the title
[Bug]: Noticable delay on split pane navigation[Bug]: Noticable delay on split pane navigation
[Bug]: Noticable delay on split pane navigation
Nov 25, 2024
Made a good effort to find an existing issue, but looks like there isn't one. In smart-splits discussions on the topic it was suggested that some of the wezterm cli operations can be slow, which causes this.
After I fixed startup time on fish command started executing in more manageable 4 millis. Why could that be the case? It seems shell startup time affects the wezterm cli time, even if it was started as a subprocess
What Operating System(s) are you seeing this problem on?
Linux X11
Which Wayland compositor or X11 Window manager(s) are you using?
DE: GNOME 46.0
WM: Mutter
WezTerm version
wezterm 20241119-101432-4050072d
Did you try the latest nightly build to see if the issue is better (or worse!) than your current version?
Yes, and I updated the version box above to show the version of the nightly that I tried
Describe the bug
Navigating from nvim pane to wezterm pane happens with about 2 sec delay
To Reproduce
nvim config
Configuration
wezterm config:
Expected Behavior
Navigation from wezterm pane to nvim pane to take the same amount of time as from nvim pane to wezterm
Logs
There is no output
Anything else?
No response
The text was updated successfully, but these errors were encountered: