Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pycharm - how to set highlighting level globally

Tags:

python

pycharm

I am really stuck in this feature of pycharm.

I want pycharm to have hightlighting level at syntax only. but I have to level this everytime I open a file.

this is what I have to change always:

enter image description here

is it possible to set this to syntax level globally? I dont want to change the color or something, I just want to set it to syntax level only once and globally.

it would be a life-changing thing, if i could do this

like image 708
doniyor Avatar asked Aug 30 '14 06:08

doniyor


People also ask

How do you highlight in PyCharm?

Highlighting usages of a symbol in the current fileFrom the main menu, choose Edit | Find Usages | Highlight Usages in File, or press Ctrl+Shift+F7 .

Does PyCharm have syntax highlighting?

Syntax highlightingThe PyCharm editor respects highlighting of the keywords, comments, parameters, type hints and so on. The particular highlighting colors are defined in the Editor | Color Scheme page of the Settings/Preferences dialog.


1 Answers

Currently the only way to get this done is by turning off the inspections which you do not require. But the side effect of it is it ends up crippling the pycharm ide.

This point has been raised previously too and this was the reply which was pushed out by the Pycharm dev team.

No, and we have no plans to provide this possibility. In our point,
turning down the default highlighting level effectively cripples PyCharm, and if the only way PyCharm works for you is in a crippled state, then you > shouldn't try to suffer through this and should use another tool instead.

You can refer to this link for more details. Attitude issues i believe :(

https://intellij-support.jetbrains.com/hc/en-us/community/posts/206598255-Is-there-a-way-to-set-the-default-highlighting-level-to-Syntax-instead-of-Inspection-

like image 164
Surjit R Avatar answered Sep 24 '22 22:09

Surjit R