We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Instead of
if has("gui_running") https://github.com/ciaranm/inkpot/blob/master/colors/inkpot.vim#L49
if has("gui_running")
maybe consider something like
if has("gui_running") || &t_Co == 88 || &t_Co == 256 https://github.com/nanotech/jellybeans.vim/blob/master/colors/jellybeans.vim#L60
if has("gui_running") || &t_Co == 88 || &t_Co == 256
so that neovim in full color mode can use the GUI colors as well?
Thanks!
The text was updated successfully, but these errors were encountered:
neovim full colour patch
3aa3f2b
as seen in ciaranm#10
Add more hi-color detection in style of jellybeans
e648f08
Following suggestion in ciaranm#10
No branches or pull requests
Instead of
if has("gui_running")
https://github.com/ciaranm/inkpot/blob/master/colors/inkpot.vim#L49
maybe consider something like
if has("gui_running") || &t_Co == 88 || &t_Co == 256
https://github.com/nanotech/jellybeans.vim/blob/master/colors/jellybeans.vim#L60
so that neovim in full color mode can use the GUI colors as well?
Thanks!
The text was updated successfully, but these errors were encountered: