Coder Social home page Coder Social logo

Comments (3)

ap avatar ap commented on July 18, 2024

Oh fer cryin’ out loud.

The Lua syntax uses contains=ALLBUT,... to create syntax groups that create every match/keyword that’s not explicitly excluded. And obviously the css-color matches/keywords aren’t excluded because the Lua syntax doesn’t know anything about them.

This ALLBUT thing is a pretty terrible idea. 😦 You can’t have multiple syntaxes cooperating peacefully within the same buffer. E.g. if you could embed Lua inside HTML, the HTML syntax couldn’t load the Lua syntax to highlight Lua bits the way it loads the CSS syntax to highlight CSS bits inside style attributes and tags – because the Lua syntax would take over the whole buffer. And this ALLBUT business isn’t even necessary given containedin (which is what css-color uses…). Argh.

And Vim also has CONTAINED and TOP faux group names that do the same as ALL/ALLBUT, just slightly more selectively. They’re all terrible ideas for the same reason.

I should file a bug on the Lua syntax. And then grep for other syntaxes that do this, and file bugs against them too. And then post to the Vim list and try to convince Bram to take a patch to the documentation that points out the problems with these things.

In the meantime I guess I have to add a hack to the Lua syntax that adds colorableGroup to every ALLBUT defined by the Lua syntax.

Sigh.

from vim-css-color.

ap avatar ap commented on July 18, 2024

Wonderful… ALLBUT and friends can only exempt individual groups (e.g. BGffd700), not entire clusters (@colorableGroup).

So every time the plugin recognises a new colour name, it would have to hack the syntax again, to add the new match group to all the ALLBUTs. Which might be noticeably janky, and would require adding a code path that would slow down the plugin in every filetype. No can do.

I guess until such time as the Lua syntax works sensibly, I I have to drop Lua support. 😦

from vim-css-color.

ap avatar ap commented on July 18, 2024

I’ve just pushed a commit that drops the Lua support. You should be good to go now.

from vim-css-color.

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.