Skip to content

Commit

Permalink
Resolve command
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomek Wytrębowicz committed Oct 5, 2012
1 parent 4ffedf7 commit a66d757
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion messages.json
Expand Up @@ -2,5 +2,7 @@
"install": "messages/install.txt", "install": "messages/install.txt",
"0.1": "messages/0.1.txt", "0.1": "messages/0.1.txt",
"0.1.2": "messages/0.1.2.txt", "0.1.2": "messages/0.1.2.txt",
"0.1.3": "messages/0.1.3.txt" "0.1.3": "messages/0.1.3.txt",
"0.1.4": "messages/0.1.4.txt",
"0.1.5": "messages/0.1.5.txt"
} }
4 changes: 4 additions & 0 deletions messages/0.1.5.txt
@@ -0,0 +1,4 @@
Vlt integration 0.1.5 changelog:

Features:
- Resolve command resolves opened file.
2 changes: 1 addition & 1 deletion vlt.py
Expand Up @@ -482,7 +482,7 @@ def update_done(self, result):


class VltResolveCommand(VltTextCommand): class VltResolveCommand(VltTextCommand):
def run(self, edit): def run(self, edit):
self.run_command(['vlt', 'resolve', os.path.join(self.get_working_dir(), self.get_file_name())], self.commit_done, True) self.run_command(['vlt', 'res', os.path.join(self.get_working_dir(), self.get_file_name())], self.commit_done, True)


def commit_done(self, result): def commit_done(self, result):
if result.strip(): if result.strip():
Expand Down
Binary file modified vlt.pyc
Binary file not shown.

0 comments on commit a66d757

Please sign in to comment.