Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Commit

Permalink
Fixed auto complete
Browse files Browse the repository at this point in the history
  • Loading branch information
mtxr committed Mar 6, 2016
1 parent 6d98156 commit 6fa2abe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ Donate and help SQLTools to become more awesome than ever.
* Threading Support (prevent ST lockups)
* Query timeout (Kill thread if query takes too long)
* Unescape chars for languages (PHP \" is replace by ")
* Save queries (`CTRL+e, CTRL+q`)
* List and Run saved queries (`CTRL+e, CTRL+a`)
* Remove saved queries (`CTRL+e, CTRL+r`)

## Todo

Up coming features:

- [ ] Save queries
- [ ] Get saved queries
- [ ] Run saved queries
- [ ] Auto complete for Oracle and Vertica

## Installing
Expand Down
2 changes: 1 addition & 1 deletion SQLTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def getAutoCompleteList(self, word):
continue

ST.autoCompleteList.sort()
return (ST.autoCompleteList, sublime.INHIBIT_EXPLICIT_COMPLETIONS)
return (ST.autoCompleteList)

@staticmethod
def checkDefaultConnection():
Expand Down

0 comments on commit 6fa2abe

Please sign in to comment.