summaryrefslogtreecommitdiffstats
path: root/TODO
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith@newrelic.com>2014-12-18 22:34:17 -0800
committerAmjith Ramanujam <amjith@newrelic.com>2014-12-18 22:34:17 -0800
commit03bf95834fe34ea943b188185ac1c037b101379b (patch)
tree3e419da491dfbab5481b9fe020f794e46cd8093e /TODO
parent1afc6eeec925fbccea06a1b979ea5dcf6f36ef7f (diff)
Add in table specific column completion for INSERT, DELETE, UPDATE statements.
Diffstat (limited to 'TODO')
-rw-r--r--TODO11
1 files changed, 6 insertions, 5 deletions
diff --git a/TODO b/TODO
index 410c7791..793be42b 100644
--- a/TODO
+++ b/TODO
@@ -1,15 +1,11 @@
# vi: ft=vimwiki
-* [o] Separate the column completions to be table specific. (SELECT, INSERT, UPDATE)
-* [ ] Column completion for simple SELECT.
-* [ ] Column completion for simple INSERT.
-* [ ] Column completion for simple UPDATE.
+* [ ] Fix: SELECT id, <tab> FROM django_migrations; - Auto-completion for the second column name is broken. Find the last keyword and use it for completion.
* [ ] Use a pager to display the output. (Check Click's document).
* [ ] Default host should not be set to localhost. Since it causes problems in IPv6 machines. Need to research this one further.
* [ ] Column completion for nested sql.
* [ ] Add JOIN to the list of keywords and provide proper autocompletion for it.
* [ ] Improve the smart completion for Insert statement. (Needs table specific columns)
* [ ] Add a few more special commands. (\l pattern, \di, \dp, \ds, \dv, \dy, \z etc)
-* [ ] Write a doc about how to run it in develop mode. (pip install -e .)
* [ ] Write a doc about how to add new pgspecial commands.(psql -E)
* [ ] Improve the smart completion for Update statement. (Needs table specific columns)
* [ ] Improve the SELECT <> completion when a FROM clause is already present. (Send the whole text to sqlparse to find the table name and do column suggestions based on that.)
@@ -29,6 +25,11 @@
* [ ] Create a class for the config and make it easy to access.
* [ ] Set multi-line via config file.
* [ ] New Feature List - Write the current version to config file. At launch if the version has changed, display the changelog between the two versions.
+* [o] Separate the column completions to be table specific. (SELECT, INSERT, UPDATE)
+* [X] Write a doc about how to run it in develop mode. (pip install -e .)
+* [X] Column completion for simple SELECT.
+* [X] Column completion for simple INSERT.
+* [X] Column completion for simple UPDATE.
* [X] Enable multi-line mode via a keybinding.
* [X] Pressing enter should just pop another prompt.
* [X] Implement \?.