zsh auto-suggestion list color - configuration

I have no idea about which part of the configuration file .zshrc is responsible for the color of the auto-suggestion list. The color is now dark blue which is not very eye-friendly with a black background.
The list appears when I type vim followed by TAB.
The dark blue color is really annoying...
Thanks for any help!

In this post: Zsh color partial tab completions
This post is more related to this question:https://unix.stackexchange.com/questions/16243/is-there-a-way-to-set-coloring-for-cd-tab-complete
In fact,after loading the auto-complete module of zsh, the configuration of the auto-complete list can be done as follows:
zstyle -e ':completion:*:default' list-colors 'reply=("${PREFIX:+=(#bi)($PREFIX:t)(?)*==34=34}:${(s.:.)LS_COLORS}")';

Related

How to change the filename's color on rename popup in PhpStorm

In PhpStorm 2019.03, when "rename" a PHP file, the text color of file name in the popup is white while the background color is also white, and so it's invisible.
How to change the text color of file name?
BTW, I'm using Material UI plugin, and this is using Atom One Light.

Xcode project navigator background color

When a window is active in xcode project navigator background color blue, and when two or more it is default. How to make that it was always defaulted?
http://imgur.com/a/B2VFr
There's two ways to change colors in Xcode.
First is the "Fonts & Colors" tab in Xcode's preferences, which look like this:
That doesn't change the color of the files in the Project Navigator, though. To do that, in System Preferences there's a tab helpfully named "General", you can change the settings for your system in it. Here's what it looks like for me now:
I chose "Graphite", and that changes selected files in the Project Navigator to have gray surrounding the filenames.
So, the problem was on the system side. The wallpapers color mixed with color of IDE. I reduced transparency. So that was it.

How to change inspections column background color in PhpStorm?

Code inspections are highlighted on the right-side of the editor as red/yellow lines. I want to change the background color of the entire column (not the color of individual inspections).
In previous versions of PhpStorm (with the Darcula theme), the column was a grey color. In PhpStorm 10, it is now transparent. Is there a way to change the background color?
Not really. That color is part of the IDE Theme which is not user configurable.
But you can show some background there:
Help | Find Action...
Look for Registry there (exact match)
Once got inside Registry window look for editor.transparent.scrollbar and uncheck it (user modified values will be displayed in bold .. so make sure you have changed it, not just "Click and that's enough")

How to have the Sublime Text console showing color instead of the color codes

I have a build system output in the console. However it is showing color code instead of the actual colorized text.
[37;46;1mTest file: static/tests/casperjs/login/test.js
How can I apply a color theme to the console output?
Thanks!
Unfortunately sublime doesn't support this. I ended up writing a plugin that parses the output and converts it into a colored version (for a subset of colors, ones we use in our testing framework).
If you would like to look into that, or if anyone stumbles upon this in future here are some tips..
I detect output in the plugin with an on_modified event listener and a view
with no name (view.name()). This does not uniquely identify the output pane
so you'll have to do a bit more than that, I found no other easy way (unless
you want to hook into your build plugin and act directly on the view it generates).
To make the color changes, I remove the color codes (view.erase()) and add color to the
regions marked by those codes with view.add_regions(). The colors I add are
ones I manually insert into a custom theme, as again there seems to be no
other way. Also, for some reason it seems you can't add a color with the
exact background of the active theme (it inverts it or something), so I set
the color's backgrounds to something just different.
As you can tell, it's a hacky, ad hoc solution, otherwise I would release it on Github.
You can also check out SublimeREPL, it does console text coloring

MonoDevelop: Changing Symbol Usage Highlighting color

Symbol Usage Highlighting was added to MonoDevelop in version 2.4 and is described as follows:
When placing the cursor over a symbol, MonoDevelop will now
automatically highlight all usages of that symbol in the editor. The
keys control+shift+up/down can be user to jump between symbol
instances.
I can't seem to find how to change the colors associated with this new feature (I assumed that Options\Syntax Highlighting would hold the colors like it does for everything else, but I don't see the entry that's associated with S.U.H.).
I can't download a newer version of MonoDevelop as I'm using it with Unity and doing so will cause issues with the debugger.
Any help would be greatly appreciated.
Preferences > Syntax Highlighting
Create a new scheme. Edit it
Modify the foreground color of "Bracket marker"
Its not nice that the bracket highlight color is the same as variables, but it works.
I'm using version 2.8.2
Symbol usage highlighting seems to use the bracket marker's foreground color. It's the color argument in the entry:
<Style name="marker.bracket" color="#CB4915" bgColor="#67322C" />
At least when using MonoDevelop 3.0.1 it is.