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
When running under bash (tested version: Macports, 5.2.15(1)-release), a Ctrl+C interruption exits tftarget, but that doesn't reset the terminal config which leads to the cursor vanishing.
The text was updated successfully, but these errors were encountered:
cursor also vanished after running tftarget apply and getting errors. something similar like this should be implemented. This example is bash though and the application is in golang, so it has to be ported
showcursor() {
echo -en "\033[?25h"
}
hidecursor() {
echo -en "\033[?25l"
}
# Trap the EXIT signal to ensure cursor is restored before exitingtrap showcursor EXIT
Sorry for not being able to respond for a long time, and thank you for using and providing feedback on tftarget. This behavior stems from the packages that tftarget is using. It seems like I will have more time to dedicate to tftarget again, so I will consider addressing this issue.
When running under
bash
(tested version: Macports, 5.2.15(1)-release), a Ctrl+C interruption exitstftarget
, but that doesn't reset the terminal config which leads to the cursor vanishing.The text was updated successfully, but these errors were encountered: