Jeevaka Dassanayake
- Total activity 61
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 9
- Subscriptions 16
-
Edited How to disable stripes for 'non-inspections' on scrollbar
AnsweredSee attached. Specifically I want to disable:- the lime green strips (on the right side of the image) showing ‘TODO’s in the file.- the light green stripes (on the left side of the image) showing o... -
Created Plugin 'Classic UI' is not compatible with the IDE because the IDE contains module 'com.intellij.jetbrains.client' which conflicts with the plugin
AnsweredUpgraded 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... -
Created How to install new CLion versions when using JetBrains Gateway
AnsweredHave 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... -
Created How to get the "Preview Diff" for local changes?
AnsweredI 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... -
Created No "Go to Declaration" anymore?
AnsweredIf 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... -
Created How to suppress an inspection globaly / for the whole project when it is not listed?
AnsweredThis 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... -
Created Is there a way to hide "Declared in" popup?
AnsweredIn 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... -
Created Why does CLion think this 'recurses indefinitely'?
AnsweredBecause 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... -
Created 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... -
Created What exactly does "skipped breakpoint at ... because it happened inside debugger evaluation" mean?
AnsweredNote: I have looked at this https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000622624--skipped-breakpoint-at-because-it-happened-inside-debugger-evaluation- and this https://yout...