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
I have a custom actions which open a 70vsplit window:
['70vsplit'] = {
desc='open terminal in a 70 vsplit',
condition=function(task)
localbufnr=task:get_bufnr()
returnbufnrandvim.api.nvim_buf_is_valid(bufnr)
end,
run=function(task)
localutil=require'overseer.util'vim.cmd[[70vsplit]]util.set_term_window_opts()
vim.api.nvim_win_set_buf(0, task:get_bufnr())
end,
},
This split window often has lots of log message.I personally prefer set wrap in this window.
But it seems like wrap = false in default_opts.
So simply set wrap in this window does not work after restart_on_save.
Is there any ways to do this? Thanks.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have a custom actions which open a 70vsplit window:
This split window often has lots of log message.I personally prefer
set wrap
in this window.But it seems like
wrap = false
in default_opts.So simply set wrap in this window does not work after
restart_on_save
.Is there any ways to do this? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions