Why doesn't CLion highlight Doxygen comments differently? - syntax-highlighting

In CLion (2021.1), it seems all comments are syntax-highlighted the same way, even if they're Doxygen documentation comments. I couldn't find a Doxygen plugin which might help with that. How can I make CLion highlight Doxygen differently?

Since CLion 2021.2 (EAP) the highlighting of Doxygen comments has changed and different from the previous versions. It is consistent with JB Idea now. Please, read here about it.

Actually, CLion does highlight Doxygen differently, but in some of the Themes (e.g. IntelliJ Light), the color chosen for regular and Doxygen comments is the same.
To change that:
On the menus, select File | Settings.
In the settings dialog, navigate to: Editor | Color Scheme | Language Defaults.
In the settings pane's tree box, navigate to: Comments | Doc Comments | Text.
Change the color to something else (I go with 5C8CC0 which reminds me of Doxygen in Eclipse).

Related

Changing colours and fonts in WebStorm 2016.1

I have just downloaded WebStorm 2016.1 for Mac OS X. I would like to configure my editor fonts and colorus.
I understand that you must save the scheme before it becomes editable. This I have done:
but the options still remain unavailable.
Is this a limitation of the trial or something? What have I missed? I have applied the style, and have even closed down WebStorm and re-opened.
If certain style (e.g. "Doc comment" on your screenshot) has Use inherited attributes option checked .. then it re-uses colors from parent option (which is displayed just below it).
The solution is simple:
either edit parent style
or uncheck that Use inherited attributes option and edit your colors here
P.S.
Trial version has NO limitation in functionality.

Change CMake syntax colors in Clion

I have installed CLion and custom configured a dark theme to make staring at the screen for long hours easier on the eyes. I was able to change every color for the C++ syntax configuration, but the color options for CMake are non-existent, and CMakes default colors are a very dark olive that requires me to strain my eyes to read. CMake shows up in code styles for changing tabbing, spacing, etc, but I cannot find color options anywhere in the settings menu.
Anyone in here that is a CLion user that can point me in the right direction?
Heres a screenshot of the CMake colors, prepare to squint
http://puu.sh/nxwtf/bd0625f791.png
Yes, that functionality is missing.
Please, vote for issue!
I managed to make the file readable by changing the setting at Editor - Language Defaults - Identifiers - Default. I guess that isn't specific to CMakeLists.txt.

disable header file suggestions in CLion

I am looking at C source code intended for Linux builds on a Windows PC with JetBrains CLion IDE. CLion keeps suggesting I include a header file for some undefined symbols, but I do not want to see these pop-up suggestions. The pop-ups make it difficult to read the code.
How can I disable header file suggestions in CLion?
There are two aspects:
Disabling include file suggestions. Starting from CLion 1.0: Settings | Editor | General | Auto Import | uncheck the "Show import popup".
When the suggestion pops up, it should at least be correct :-) There are many bugs opened on this behavior, check for example https://youtrack.jetbrains.com/issue/CPP-704. Almost completely fixed starting from CLion 1.0.
EDIT Fixed starting from CLion 1.0 (Apr 2015).

Show Indent Guide Lines In Xcode

Coming from a background using Visual Studio and Notepad++ I'm used to the indent guides which help to visually enhance sections of code where the curly braces are used,
Xcode (No indent guides)
Visual Studio (Nice tidy indent guides)
As you can see from the images above sometimes there are sections of code where multiple levels of curly braces are open and it gets messy without any indent guides.
Are there any options or plugins that will allow xcode to display the indent guides in between sections of code? Like the VS2010 sample?
In Xcode 10, if you press Command and hover over the structure it will show what is desired. It is not permanent but it helps.
Xcode doesn't have this feature (not that I'm aware of) , but it has a (kinda) similar one. If you look closely in a method with a few loops or if structures, each structure gets a black tint on the left side of the editing area (right next to the line numbers).
You can collapse or expand the functions as needed.
I've been searching the same but the most similar solution on Xcode 11 is shows invisibles

How can I set my VIM color scheme to the same default color scheme in Visual Studio?

Very new to VIM so any explanation on how to configure would be very appreciated.
Find one here that is close to Visual Studio.
Download it and put colorscheme foo in your .vimrc (_vimrc on Windows) where foo is the name of the colorscheme.
My "Bandit" colour scheme was originally based on the highlighting from Visual Studio (version 6 I think) and Matlab. It's probably not a perfect match, but it may be of interest.
It's available here and, in case the screenshot below doesn't work, there's a screenshot here. Note that you'll need to do:
set background=light
before configuring the colour scheme as otherwise it will default to a dark background.
You need to search in the different color schemes. I don't know if there's one who is the same as in Visual Studio, but maybe you'll find a better one. :)
Type a little piece of code, then :colorscheme, a space, and press Tab to see every colorscheme.
You can download new colorschemes here : http://www.vim.org/search.php
The "VC" color scheme (found here) is very close to looking like the default Visual Studio color scheme.

Resources