nvim: osc7 goodness
This commit is contained in:
parent
09b2992cce
commit
994ee848f6
1 changed files with 7 additions and 0 deletions
|
@ -21,3 +21,10 @@ vim.filetype.add({
|
|||
templ = "templ",
|
||||
},
|
||||
})
|
||||
|
||||
-- AutoCommand OSC7 workaround for tmux
|
||||
-- see https://github.com/neovim/neovim/issues/21771
|
||||
vim.api.nvim_create_autocmd("dirchanged", {
|
||||
pattern = "*",
|
||||
command = 'call chansend(v:stderr, printf("\\033]7;%s\\033", v:event.cwd))',
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue