Code indent with Nova enabled
After I enabled the Nova Engine in CLion, the intents are not respected, Under Code Style -\> C/C++ I have set intents to 4 using spaces. But every time I go to a new line in a scope the cursor only indents 2 spaces.
class myclass {
|
};
Also when writing classes I usually type "priv"... and then it pops up with the suggestion to write "private:" which is than un-intented as expected. But after nova is enabled the "private:" stays at the 2 spaces indentation.
class myclass {
private:
};
// Instead of the correct
class myclass {
private:
};
This issue makes me use a lot of time to reindent the line for every line written.
Here is the CLion information from the About box:
CLion 2024.3.1.1
Build #CL-243.22562.225, built on December 18, 2024
Runtime version: 21.0.5+8-b631.28 aarch64 (JCEF 122.1.9)
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
Toolkit: sun.lwawt.macosx.LWCToolkit
macOS 15.1.1
.NET Core v8.0.4 ARM64 (Server GC)
GC: G1 Young Generation, G1 Concurrent GC, G1 Old Generation
Memory: 2048M
Cores: 8
Metal Rendering is ON
Registry:
actionSystem.update.actions.warn.dataRules.on.edt=false
debugger.attach.dialog.enabled=true
run.processes.with.pty=TRUE
ide.experimental.ui=true
ide.slow.operations.assertion=false
cache.folding.model.on.disk=false
i18n.locale=
terminal.new.ui=true
llm.show.ai.promotion.window.on.start=false
Non-Bundled Plugins:
com.intellij.plugins.vscodekeymap (243.21565.122)
Thanks
Michael
请先登录再写评论。