Home > Software engineering >  There is no auto completion when editing in the text input box of debug console,
There is no auto completion when editing in the text input box of debug console,

Time:08-29

When inputting code the text input box of the debug console, There is completions options, but after clicking enter on keyboard, it will not be completed automatically. You need to manually click the completion item with the left mouse button to complete it.So could some optimization be made here. Thank You! enter image description here

enter image description here

CodePudding user response:

Use the tab key to accept what is highlighted in the intellsense drop down in the console.

You can also use the up and down arrow keys to scan through the list.

Hopefully that will keep you from having to switch to mouse. :)

  • Related