Don't forward output on done

This commit is contained in:
Kevin Sawicki
2012-10-23 21:30:29 -07:00
parent 5808609bfd
commit b4b9a0c76b

View File

@@ -77,8 +77,7 @@ class OutlineView extends SelectList
path = @rootView.getActiveEditor().getPath()
command = "ctags --fields=+KS -nf - #{path}"
deferred = ChildProcess.exec command, options
deferred.done (stdout, stderr) =>
options.stdout(stdout)
deferred.done =>
if tags.length > 0
@setArray(tags)
@attach()