Jeevaka Dassanayake
- 活动总数 56
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 8
- 订阅数 15
-
创建于 Plugin 'Classic UI' is not compatible with the IDE because the IDE contains module 'com.intellij.jetbrains.client' which conflicts with the plugin
已回答Upgraded to CLion 2024.2 and found that the “Classic UI” is not relegated to a plugin in favor of VS code ui.When the plugin is enabled, when using ssh (remote dev) I get above error in startup and... -
创建于 How to install new CLion versions when using JetBrains Gateway
已回答Have been using gatway (windows client / linux host) for about 7 months. If I recall right, whenever there was a new CLion release, I was able to install it on the host without much trouble. Either... -
创建于 Is there a way to disable CLion from grabbing focus before it is ready to do any work?
Splash screen + "loading project" takes a minute or so. I tried calling clion.sh with 'nosplash' parameter, but it didn't help. -
创建于 "Invalidate Caches / Restart" not working. How to troubleshoot?
This started happening after upgrading to 1.2.4. Probably I made some error during the upgrade process. Is there any log file / config I could check? -
创建于 How to get the "Preview Diff" for local changes?
已回答I have "Use non-modal commit interface" unchecked in the settings. For "Local Changes", toggling the "Preview Diff" button has no effect. Interestingly, I have a nearly identical setup (Ubuntu 18.0... -
创建于 No "Go to Declaration" anymore?
已回答If I recall right, until recently default behavior of "Ctrl + Click" on a member in a cpp was to navigate to the definition in the hpp. But seems like it changed to "Go to Declaration or Usages" an... -
创建于 How to suppress an inspection globaly / for the whole project when it is not listed?
已回答This has been asked here without success here. Since a large number of files in my project get flagged due to CPP-16347 I can wrap each file with #pragma clang diagnostic push#pragma ide diagnostic... -
创建于 Is there a way to hide "Declared in" popup?
已回答In the editor, with Ctrl key down, when mouse hover over a non keyword token (e.g. variable, method, type etc), a popup occurs showing where the token is declared. Usually this appears just above t... -
创建于 Why does CLion think this 'recurses indefinitely'?
已回答Because stl algorithms on collections usually are range based, i.e. of form f( start_it, end_it, ...), but usually those functions are used for the whole collection, I like to define functions of t... -
创建于 CLion code formatter: Anyway to prioritize the rules?
Lets say I have a constructor like this: MyClass::MyClass( Type1 parameter1, Type2 parameter2, Type3 parameter3, Type4 parameter4, Type5 parameter5 ) : MyBaseClass( parameter1, parameter2 ), member...