Skip to content

Commit

Permalink
- Fixed crashes with newer ST2 versions
Browse files Browse the repository at this point in the history
- Completions will not automatically pick up unsaved changes for now (no auto-save on completion request anymore)
  • Loading branch information
JulianEberius committed Jan 25, 2012
1 parent 44fbaf4 commit 466a98c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion subclim_plugin.py
Expand Up @@ -164,7 +164,9 @@ def on_query_completions(self, view, prefix, locations):

# we need to save the view on every call to completion, or eclipse
# wont see the changes
view.run_command("save")
# TODO: find a new solution here. The new as-you-type autocomplete
# will crash when save is run on every completion request
# view.run_command("save")

project, file = eclim.get_context(view.file_name())
pos = locations[0]
Expand Down

0 comments on commit 466a98c

Please sign in to comment.