KrzysztofDusko / JustyBase

SQL editor/IDE
GNU General Public License v3.0
10 stars 0 forks source link

Autocompletion - quality of life suggestions #267

Closed andrzejchmiel3 closed 7 months ago

andrzejchmiel3 commented 7 months ago
  1. Add autocompletion when something starts with comma, currently there is no autocompletion becasue of it obraz while everything is ok when there is space after comma: obraz

  2. In some cases, autocompletion is more annoying than helpful, like typing numbers: obraz (table cannot even start with number. It can contain numbers, thats why currently autocompletion works, but i guess not many people will try to benefit from current autocompletion of numbers) My solution would be - in case of typing number, limit autocompletion to only snippets starting with that number

  3. Limit database autocompletion, or delay it so it wont show immediately after typing single letter, like below. ( My idea would be to show database autocompletion after typing >=3 letters. But there may be better solution like slight 0.3s delay) obraz

  4. Disable autocompletion in comments: (maybe excluding snippets) obraz

KrzysztofDusko commented 7 months ago
KrzysztofDusko commented 7 months ago
  1. in my opinien is feature ont bug.. Some usage scenarios benefit from that. I wont change this behavior at this point but maybe in the future i will change my mind
    ... PRODUCTION CODE ...
    /* some additional/test code that should not be compiled in procedeure etc.
    */

    Please check 1,2,3 and let my know is it fixed for you.

andrzejchmiel3 commented 7 months ago

Points 1 2 and 3 now work as I suggested, thank you