Giter Club home page Giter Club logo

Comments (5)

lifepillar avatar lifepillar commented on June 11, 2024 1

@habamax @romainl @neutaaaaan Feeling brave enough to give it a try? 🙂

Among the rest, v3 addresses some of recent Bram's concerns about the generated code (modeline and t_Co in particular).

One thing to note is that the generated highlight group definitions are always complete, with both gui and (c)term attributes. This is by design, and a change compared to v2, but the decision may be reverted. Open for discussion.

from vim-colortemplate.

romainl avatar romainl commented on June 11, 2024 1

I would like to help but I'm still on 1276. I will make sure to come back as soon as there is a new MacVim release.

from vim-colortemplate.

lifepillar avatar lifepillar commented on June 11, 2024

Thanks! The current code is “living on the edge” because it relies on very recent fixes for Vim 9 script. That is a bit inconvenient for now. It is perhaps worth adding how I build Vim:

git checkout https://github.com/vim/vim.git
cd vim
env CFLAGS=-I/opt/local/include LDFLAGS=-L/opt/local/lib ./configure --prefix=/opt/local
make -j9 VIMRUNTIMEDIR=`pwd`/runtime

I use MacPorts, and /opt/local is where MacPorts installs stuff. If you are using Homebrew, you may replace /opt/local with /opt/homebrew (I guess). If you are using something else, adjust accordingly.

I usually don't bother running sudo make install, and run Vim directly from the repo: ./src/vim. That's why I specify VIMRUNTIMEDIR.

from vim-colortemplate.

lifepillar avatar lifepillar commented on June 11, 2024

More examples of colorschemes defined with v3 syntax:

from vim-colortemplate.

lifepillar avatar lifepillar commented on June 11, 2024

Consider this definition using v3 syntax:

; Default definition
Comment grey white bold,italic

; Definition that applies only in gVim
Comment/gui pink white italic

; Definition that applies to terminals with t_Co >= 256
Comment/256 grey white bold

It seems intuituive enough, right? But:

Question: What would you expect Comment to be when termguicolors is set?

For the record, currently, the above will generate code like this (with white=#ffffff, black=#000000, grey=#444444, and pink=#f27487):

hi Comment guifg=#444444 guibg=#ffffff guisp=NONE gui=bold,italic

if has('gui_running')
  hi Comment guifg=#f27487 guibg=#ffffff guisp=NONE gui=italic
endif

if str2nr(&t_Co) >= 256
  hi Comment ctermfg=238 ctermbg=231 cterm=bold
  finish
endif

So, when termguicolors is set, Comment uses the default colors (gray on white), but with terminal attributes (bold). Does it make sense?

Currently, there is no explicit /termgui variant. Should there be?

from vim-colortemplate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.