dunovank / jupyter-themes

Custom Jupyter Notebook Themes
MIT License
9.78k stars 1.06k forks source link

Brackets highlighting stays on #281

Open ccojocea opened 6 years ago

ccojocea commented 6 years ago

If no other character is typed after a pair of brackets, the brackets will remain highlighted. This looks a bit annoying for example if you call a function and the brackets are still highlighted. The screenshot talks more than I can though. Anyone know how to fix this?

image 046

huyvnphan commented 5 years ago

Yes this really annoying

xgdgsc commented 5 years ago

I get white bracket using solarized light, making it almost unusable, don' t know if it is related.

zhiyunyao commented 5 years ago

I just simply make the matching invisible by modifying the CSS term "div.CodeMirror span.CodeMirror-matchingbracket" in "C:\Users\(name)\.jupyter\custom\custom.css" as

div.CodeMirror span.CodeMirror-matchingbracket {
 color: #abb7ce;
}