how to remove the auto-completion of braces Nk Mk Created September 12, 2011 16:43 Hi,When typing methodName(... how I can stop IntelliJ from adding the closing brace ... )? Also the same goes for { } and [ ]Thanks
Use the settings, they are searchable. ;-)
IDE Settings -> Editor -> Smart Keys -> Insert pair bracket
for (), [] and in Array initializers {}
IDE Settings -> Editor -> Smart Keys -> Enter -> Insert pair '}'
for {} where you press enter, be it in array initializer or blocks like "if", "switch" and so on.
thanks!