Qt 6.11 is out! See what's new in the release
blog
Qt Creator from command line does not find instance
-
I am trying to use Qt Creator as my viewer/pager for
git show, because Qt Creator does not offer to view a file at a specific revision (or does it ? See other question.)I want to use option
-blockfor two reasons :- It blocks the command line where I run
gituntil the file has been closed. This allows me to create temporary file and delete them whengitreturns. I do not think it is possible to pass the standard output to Qt Creator directly, is it ? Therefore I have to dump the output ofgit showto a temporary file, and delete it afterwards. - It uses my open instance of Qt Creator, which helps with project-context parsing.
But sometimes it fails to find the instance, and decides to open another one. This is annoying.
How can I debug this ?
- It blocks the command line where I run