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
i often find it more useful for the pwd to be the active file's folder, rather than the active window's folder, and i imagine this is also more intuitive behavior. something like pwd = os.path.dirname(sublime.active_window().active_view().file_name()) in line 46 of __init__.py?
The text was updated successfully, but these errors were encountered:
There's a slight problem with that (maybe it's a race condition?) because often the active_view ends up being the COQTOP pane itself. I did a slightly hacky workaround:
i often find it more useful for the pwd to be the active file's folder, rather than the active window's folder, and i imagine this is also more intuitive behavior. something like
pwd = os.path.dirname(sublime.active_window().active_view().file_name())
in line 46 of__init__.py
?The text was updated successfully, but these errors were encountered: