Skip to content

Commit

Permalink
testing new completion code
Browse files Browse the repository at this point in the history
  • Loading branch information
David Furió committed Jun 30, 2017
1 parent 2b6cfb9 commit 8e9f9f8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pythonx/cm_sources/swift-completer.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ def cm_refresh(self, info, ctx, *args):
json_list = json.loads(output.decode())

except subprocess.CalledProcessError:
self.complete(info, ctx, startcol, [])
return

# logger.debug("args: %s, result: [%s]", args, output.decode())
Expand All @@ -123,6 +122,6 @@ def cm_refresh(self, info, ctx, *args):
'info': item['descriptionKey'] + doc,
})

logger.debug("matches: [%s]", matches)
# logger.debug("matches: [%s]", matches)

self.complete(info, ctx, startcol, matches)

0 comments on commit 8e9f9f8

Please sign in to comment.