Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. Code completion only activated at the 3rd char? even if I set to 'always'

Code completion only activated at the 3rd char? even if I set to 'always'

Scheduled Pinned Locked Moved Qt Creator and other tools
4 Posts 4 Posters 2.1k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • F Offline
    F Offline
    Forrest
    wrote on last edited by
    #1

    @int main(int argc, char *argv[])
    {
    QApplication app(argc, argv);
    MainWindow window;
    window.resize(640, 512);
    window.show();

    win|
    return app.exec();
    

    }@

    For example, for the code above, only after I input 'n' the code completion list of 'win' will appear.

    How can I set it so that the completion list will appear at the first char I typed?

    1 Reply Last reply
    0
    • L Offline
      L Offline
      loladiro
      wrote on last edited by
      #2

      I don't have an answer to your original question, but pressing Ctrl+Space will always cause the autocompletion options to be shown.

      1 Reply Last reply
      0
      • T Offline
        T Offline
        tobias.hunger
        wrote on last edited by
        #3

        You get so many results from the completion engine that processing that list currently takes too long. It causes noticeable delays when typing, so you can not enable it.

        Maybe we can introduce this feature after some more improvements to the completion engine. There are no concrete plans to add the direct completion you want, but we recently moved the completion into a separate thread, so maybe with some more work we can introduce what you want at some point. This is not a priority to use at this time though.

        1 Reply Last reply
        0
        • T Offline
          T Offline
          TobbY
          wrote on last edited by
          #4

          you can use ctrl+space keys to do that.

          1 Reply Last reply
          0

          • Login

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved