Turn off automatic text insertion

已回答

New to CLion, and I'm sure this is a simple fix, but for the life of me I cannot seem to figure this out.  Doing simply stuff in C language like the printf function.  When I type this the program will automatically auto insert the parentheses, but it will always include some text about Hello World as in:

printf("Hello world!");

Which would be fine if that is what I wanted.  It now requires that I click within the parenthes to remove the text, which then also removes the closing parentheses.

The program does this type of thing on a number of functions, it will auto fill with text.  How can I get it to just simply include the open and closed brackets/parentheses without the addition of unwanted text.  Code completion suggestions are a wonderful thing which is definitely desired, but I don't get this.  How do I get the standard code completion and closing brackets without all the other information popping up?

0

Hello!

Do you see a completion suggestion for an entire line of code like this?

If so, it's the Full Line completion. You can disable it as described here https://www.jetbrains.com/help/clion/full-line-code-completion.html#enable-full-line-code-completion.

0

请先登录再写评论。