On 8/11/06, Philip Ganchev <[EMAIL PROTECTED]> wrote:
> Hi,
>
> It seems Fish's completion color variables
> (fish_pager_color_completion, etc.) do not affect the color of
> completions.
>
> For example:
>
> fish> set -xg fish_pager_color_description brown
> fish> echo $fish_pager_color_<Tab>
> …_color_completion  (Variable: normal)
> …_color_description  (Variable: brown)
> …_color_prefix       (Variable: brown)
> …_color_progress      (Variable: cyan)
>
>
> Here the descriptions are printed in normal color.  A screenshot is attached.

Hi. Looking at the code, it seems that fish_pager only uses universal
variables, and ignores regular variables even if they exist. This is a
bug and will be fixed.

In the mean time, to change the colors, use universal variables, e.g.
'set -U fish_pager_color_description green', etc. At startup, fish
initializes these universal variable if they don't exist, so simply
using good old 'set' should work, unless you've already created a
non-universal variable with the same name, in which case the
nonuniversal variable will shadow the universal one.


--
Axel


-- 
Axel

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Fish-users mailing list
Fish-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fish-users

Reply via email to