deathaxe
deathaxe
Maybe I click to slowly, but tooltips disappear as soon as I move mouse. I don't even reach another tab without tooltip disappearing.
Just got into same issue here on ST 4109 and Windows 10. Not sure how. 
Not that I am aware of. Just happens from time to time (rarely in my case). I've always been of the impression it to be related with reloading resources as...
As there is a command "Close Selected Tabs" already, a discussion of usefullness about selecting tabs to perform an operation is more or less obsolete. It would be just another...
New views are also not added to selection. ```py window.new_file(flags=sublime.ADD_TO_SELECTION) ```
I'd just expect all of them to behave equally. A plugin might also want to add a new view next to the current one and add some output afterwards.
The dialog normally appears only, if an open file has unsaved changes, which would get lost in case of reloading content from disk.
My point was it shouldn't ask at all in case log file hasn't been modified via ST before external scripts do so.
If "reload" button is hit once, all following filesystem updates shouldn't trigger confirmation update again until content is edited by user. Maybe a race condition with hitting reload button vs....
Can be achieved by always returning `Arg1InputHandler`. ```py import sublime_plugin class SomeCommand(sublime_plugin.TextCommand): def run(self, edit, arg1, arg2): print(arg1, arg2) def input(self, args): return Arg1InputHandler(args.get("arg1")) class Arg1InputHandler(sublime_plugin.ListInputHandler): def __init__(self, initial_text) ->...