Improve code auto-completion #7682
Replies: 2 comments
-
Pressing Space to accept autocompletion suggestions is pretty uncommon in most editors. You should already be able to add this binding in the Editor Settings' shortcuts tab, but I don't think it should be the default. |
Beta Was this translation helpful? Give feedback.
-
@Calinou Maybe I didn't describe it very well, most IDEs (Visual Studio, PyCharm, Rider) support ( Space are common because programming languages use spaces as separators, as shown below.
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
The current code completion uses the
Tab
key to submit, and it is proposed to support more keystroke submissions(Space
,(
,[
,.
):This avoids frequent use of the
Tab
key.current behavior:
pri
->Tab
->(
=>print()
improve:
pri
->(
=>print()
current behavior:
my_o
->Tab
->.
->prop
->Tab
=>my_obj.property1
improve:
my_o
->.
->prop
->Space
/Tab
=>my_obj.property1
Beta Was this translation helpful? Give feedback.
All reactions