The yes_no_cancel_dialog(string, <yes_title>, <no_title>)
method’s API documentation says:
Displays a yes / no / cancel question dialog to the user. If yes_title
and/or no_title are provided, they will be used as the text on the
corresponding buttons on some platforms. Returns sublime.DIALOG_YES,
sublime.DIALOG_NO or sublime.DIALOG_CANCEL.
Does anyone know which platforms the yes_title and/or no_title
button captions will be displayed on?
I use Linux and they are shown, I had a look on Windows XP (32 bit) and they are not shown but I suspect they would be on more recent versions of Windows. I would guess that they are shown on OSX simply on the basis that it is UNIX and therefore the code is probably similar to Linux.
Thanks.