This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Aivar.Annamaa, ned.deily, ronaldoussoren, terry.reedy
Date 2021-06-08.21:25:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623187508.91.0.271066077317.issue44350@roundup.psfhosted.org>
In-reply-to
Content
Documented as macOS specific at https://www.tcl.tk/man/tcl8.6/TkCmd/wm.htm.  But I would not know about C-click from "Specifies the path of the file referenced as the window proxy icon (which can be dragged and dropped in lieu of the file's finder icon). "

IDLE document windows already have the absolute path in the title.  There is only an issue if it is too long for the space, such as when editing installed idlelib test files.  I don't know what will happen if/when you use tabbed windows.

In the meanwhile, it would be easy to add
    if long and sys.platform == 'darwin':
        # Only valid as long as 'long' is absolute path.
        self.top.wm_attributes("-titlepath", long)
to the end of editor.EditorWindow.saved_change_hook.

Ned or Ronald, is this worth it?  Is there any downside to this?
History
Date User Action Args
2021-06-08 21:25:08terry.reedysetrecipients: + terry.reedy, ronaldoussoren, ned.deily, Aivar.Annamaa
2021-06-08 21:25:08terry.reedysetmessageid: <1623187508.91.0.271066077317.issue44350@roundup.psfhosted.org>
2021-06-08 21:25:08terry.reedylinkissue44350 messages
2021-06-08 21:25:08terry.reedycreate