Replies: 1 comment 3 replies
-
No you would need to add it, it will be similar to for example |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on a simple script that "records" a terminal session (snapshots panes when there's changes) including all ANSI colors.
One issue I ran into was, that the cursor info isn't output by
tmux capture-pane
, however I managed to get the position usingtmux display-message -p -F '#{cursor_x} #{cursor_y}'
instead.The last piece of information I'd need is the cursor shape (block, underline, blinking, etc.). Is there any way to query the cursor shape, through tmux or otherwise (I looked into querying using ANSI sequences, but it looks complicated).
Any pointers are greatly appreciated! 🙇♂️
Beta Was this translation helpful? Give feedback.
All reactions