Git Product home page Git Product logo

Comments (2)

keith avatar keith commented on May 18, 2024

Thanks for these 3 (with examples!) Kyle. Vim syntax files are the worst. I'll see what I can do.

from swift.vim.

keith avatar keith commented on May 18, 2024

I almost got somewhere with this:

syntax match swiftThing "\v\W\u\w+"hs=s+1
syntax match swiftThing "\v^\u\w+"
highlight default link swiftThing TODO

This worked by highlighting everything that had a capital letter, followed by other letters. It almost worked because it was also overwritten by other rules. There are 2 cases this is broken with though:

if #available(OSX 10.10.3, *) {

Here it overwrites the highlight of OSX. And:

let URL = NSURL(string: "foo")

It highlights URL when it shouldn't be (or any other variable name starting with a capital letter). We could possibly handle this last case by making sure it's not followed by a = but that got pretty complex pretty quickly.

If anyone wants to take this starting point and run with it that would be awesome

from swift.vim.

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.