def on_query_completions(self, view, prefix, locations):
settings = sublime.load_settings('autofilename.sublime-settings')
is_proj_rel = settings.get("afn_use_project_root")
valid_scopes = settings.get("afn_valid_scopes")
Hi, I did change on_query_completions a little and it worked for Windows. Sorry I didn’t have much time to check what you are doing there with view.settings(), but if you just need to read settings from autofilename.sublime-settings - why are you not using sublime.load_settings(‘autofilename.sublime-settings’)? There potentially could be other places where you may want to change view.settings() to sublime.load_settings().
Thank you for supporting this plugin, it is really neat.