Skip to content

Commit

Permalink
chore: use single quotes instead of brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesmithgh committed Jan 13, 2024
1 parent d1970d3 commit 37b1f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/kitty-scrollback/kitty_commands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ M.get_text_term = function(kitty_data, get_text_opts, on_exit_cb)
.. [[-e 's/$/\x1b[0m/g']] -- append all lines with reset to avoid unintended colors
local flush_stdout_cmd = p.kitty_data.kitty_path .. [[ +runpy 'sys.stdout.flush()']]
-- start to set title but do not complete see https://github.com/kovidgoyal/kitty/issues/719#issuecomment-952039731
local start_set_title_cmd = [[printf '\x1b]2;']]
local start_set_title_cmd = 'printf "\x1b]2;"'
local full_cmd = kitty_get_text_cmd
.. ' | '
.. sed_cmd
Expand Down

0 comments on commit 37b1f8c

Please sign in to comment.