1
0
Fork 0
pgcli/TODO

19 lines
1.4 KiB
Plaintext
Raw Normal View History

2014-12-14 19:41:08 +00:00
# vi: ft=vimwiki
2014-12-30 23:50:37 +00:00
* [ ] Add a page to keep track of changelog in pgcli.com
* [ ] Refactor to sqlcompletion to consume the text from left to right and use a state machine to suggest cols or tables instead of relying on hacks.
* [ ] ON keyword should suggest aliases. This is something we don't currently support since a collection of aliases is not maintained.
* [ ] Refactor to sqlcompletion to consume the text from left to right and use a state machine to suggest cols or tables instead of relying on hacks.
2015-01-04 03:36:11 +00:00
* [ ] Add a few more special commands. (\l pattern, \dp, \ds, \dy, \z etc)
* [ ] Refactor pgspecial.py to a class.
2014-12-18 06:05:30 +00:00
* [ ] Write a doc about how to add new pgspecial commands.(psql -E)
2014-12-14 19:41:08 +00:00
* [ ] Show/hide docs for a statement using a keybinding.
2014-12-13 21:44:02 +00:00
* [ ] Check how to add the name of the table before printing the table.
2014-12-31 06:56:06 +00:00
* [ ] Add a new trigger for M-/ that does naive completion.
2014-12-16 07:30:07 +00:00
* [ ] New Feature List - Write the current version to config file. At launch if the version has changed, display the changelog between the two versions.
2015-01-01 08:14:55 +00:00
* [X] Add JOIN to the list of keywords and provide proper autocompletion for it.
* [X] Extract tables should also look for table names after the JOIN keyword.
- SELECT * FROM some_very_long_table_name s JOIN another_fairly_long_name a ON s.id = a.num;
* [X] Test if the aliases are identified correctly if the AS keyword is used
- SELECT * FROM my_table AS m WHERE m.a > 5;
2015-01-05 06:55:32 +00:00
* [X] Add logging.