Skip to content

Commit

Permalink
fix(kitty): image shown when switching to different tmux session 3rd#198
Browse files Browse the repository at this point in the history
  • Loading branch information
shurensha committed Jul 24, 2024
1 parent 61c7651 commit bcdc1e3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/image/backends/kitty/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,14 @@ backend.clear = function(image_id, shallow)
if not image then return end

if image.is_rendered then
local tty = get_clear_tty_override()
if tty == nil then tty = utils.tmux.get_active_pane_tty() end
helpers.write_graphics({
action = codes.control.action.delete,
display_delete = "i",
image_id = image.internal_id,
quiet = 2,
tty = get_clear_tty_override(),
tty = tty,
})
end

Expand Down
2 changes: 2 additions & 0 deletions lua/image/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ api.setup = function(options)
then
local images_to_restore_on_focus = {}
local initial_tmux_window_id = utils.tmux.get_window_id()
local initial_tmux_session = utils.tmux.get_current_session()

vim.api.nvim_create_autocmd("FocusLost", {
group = group,
Expand All @@ -268,6 +269,7 @@ api.setup = function(options)
if
state.options.editor_only_render_when_focused
or (utils.tmux.is_tmux and utils.tmux.get_window_id() ~= initial_tmux_window_id)
or (utils.tmux.is_tmux and utils.tmux.get_attached_session() ~= initial_tmux_session)
then
state.disable_decorator_handling = true

Expand Down
17 changes: 17 additions & 0 deletions lua/image/utils/tmux.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@ local create_dm_getter = function(name)
end
end

local get_active_pane_tty = function()
if not is_tmux then return nil end
local result = vim.fn.system(
"tmux list-sessions -F '#{session_name} #{session_attached}' | awk '$2 == \"1\" {print $1}' | xargs -I{} tmux list-panes -t {} -F '#{pane_active} #{pane_tty}' | awk '$1 == \"1\" {print $2}'"
)
return vim.fn.trim(result)
end

local get_attached_session = function()
if not is_tmux then return nil end
local result = vim.fn.system("tmux list-sessions | grep \"(attached)\" | sed -E 's/:.*$//'")
return vim.fn.trim(result)
end

local escape = function(sequence)
return "\x1bPtmux;" .. sequence:gsub("\x1b", "\x1b\x1b") .. "\x1b\\"
end
Expand All @@ -23,10 +37,13 @@ return {
has_passthrough = has_passthrough,
get_pid = create_dm_getter("pid"),
get_socket_path = create_dm_getter("socket_path"),
get_attached_session = get_attached_session,
get_current_session = create_dm_getter("session_name"),
get_window_id = create_dm_getter("window_id"),
get_window_name = create_dm_getter("window_name"),
get_pane_id = create_dm_getter("pane_id"),
get_pane_pid = create_dm_getter("pane_pid"),
get_active_pane_tty = get_active_pane_tty,
get_pane_tty = create_dm_getter("pane_tty"),
get_cursor_x = create_dm_getter("cursor_x"),
get_cursor_y = create_dm_getter("cursor_y"),
Expand Down

0 comments on commit bcdc1e3

Please sign in to comment.