# vi: ft=vimwiki * [o] Separate the column completions to be table specific. (SELECT, INSERT, UPDATE) * [ ] Column completion for nested sql. * [ ] Add JOIN to the list of keywords and provide proper autocompletion for it. * [ ] Use a pager to display the output. (Check Click's document). * [ ] 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.) * [ ] Show/hide docs for a statement using a keybinding. * [ ] Cmd-K breaks in OS X iterm. - This might be a prompt_toolkit bug. * [ ] Check why Indexes have a invalid at the end when \d is called on them. * [ ] Add some tests. Sanity, Unit, Completion, Config. * [ ] Add tests for smart completion. * [ ] Check how to add the name of the table before printing the table. * [ ] Show only table sensitive columns in autocompletion. * [ ] Add logging. * [ ] Setup the pgcli.com website. * [ ] Add a new trigger for M-/ that does dumb completion. * [ ] Find a way to add documentation to sql commands. This could get tricky. * [ ] Detect a '.' and parse the word before it and get it's real name. * [ ] Refactor the execution and output into a separate class. * [ ] 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. * [X] Enable multi-line mode via a keybinding. * [X] Pressing enter should just pop another prompt. * [X] Implement \?. * [X] Automate the release procedure.