Replies: 1 comment 1 reply
-
Multiple preview windows is a tempting idea, I've thought about it too, but it probably won't happen in the near future because of the significant complexity it would bring. There is |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a use-case where I want to show/preview information from different commands.
For example, for a running docker container image, I want to preview
docker inspect {1}
as well asdocker logs {1}
.One way this could be done is by splitting the existing preview window into panes that users can specify with
pane(...)
arguments to--preview
(similar to binding multiple actions to 1 key, like--bind 'ctrl-x:execute(...)+reload(...)'
).Pseudo-code:
Another acceptable (arguably, less complex) workaround would be dynamically change/transform the preview with a bind action, like:
Beta Was this translation helpful? Give feedback.
All reactions