Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

There is a problem with the high-intensity colors, they are not showing up #1

Closed
migueldeicaza opened this issue Jan 7, 2018 · 3 comments
Labels

Comments

@migueldeicaza
Copy link
Collaborator

No description provided.

@migueldeicaza
Copy link
Collaborator Author

It looks like ncurses on MacOS was not compiled with --enable-ext-colors option, as even a C program fails to show high colors:

#include <ncurses.h>

main()
   {
    initscr();
    if (start_color() == OK)
    {
        init_pair (1, COLOR_YELLOW, COLOR_BLUE);
        attrset (A_BOLD | COLOR_PAIR (1));
        addstr ("yellow text on blue");
        getch ();
    }
    endwin();
   }

@migueldeicaza
Copy link
Collaborator Author

The only fix seems to be that I need to write my own engine, can not rely on the system curses to work.

@migueldeicaza
Copy link
Collaborator Author

Closing this issue, as the fix is to implement our own engine on MacOS

tig pushed a commit that referenced this issue Jul 9, 2020
tig pushed a commit that referenced this issue Feb 15, 2021
update to latest master for scrollbar
tig added a commit that referenced this issue Nov 1, 2022
Add SearchCollectionNavigator
tig added a commit that referenced this issue Aug 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant