GithubHelp home page GithubHelp logo

Comments (5)

nobody-famous avatar nobody-famous commented on July 19, 2024

Yes, that should be doable. Do you have an example of what it's doing versus what it should do?

from alive.

smashedtoatoms avatar smashedtoatoms commented on July 19, 2024

Totally. Here are some examples of how it should look:

(defun test (a &optional b)
  #+(or)
  (+ 1 1)
  (+ 2 2))

or

(defun test (a &optional b)
  #+nil
  (+ 1 1)
  (+ 2 2))

or

(defun test (a &optional b)
  #+todo
  (+ 1 1)
  (+ 2 2))

and here is how it looks:

(defun test (a &optional b)
  #+
  (or)
  (+ 1 1)
  (+ 2 2))

and

(defun test (a &optional b)
  #+nil
  (+ 1 1)
  (+ 2 2))

and

(defun test (a &optional b)
  #+todo
  (+ 1 1)
  (+ 2 2))

You'll notice the ones on the atoms work as expected. Some people use #+nil or #+todo instead of #+(or) for this same purpose, so I included all 3 examples. The value after #+ can be anything that isn't defined as a feature. I like #+(or) because it is easy to switch to #+(and) if I want to enable it temporarily. When Slime encounters that particular reader macro, it will actually set the color of the s-expression that follows it to the comment color, which is cool, but probably not necessary. If it kept the #+ along with the following s-expression or atom immediately after it, that would do it for me.

Sorry if I made this more confusing. I tend to have an easier time writing things if I have a few examples, so I included more than one. Let me know if I made it worse.

from alive.

nobody-famous avatar nobody-famous commented on July 19, 2024

Ok, thanks. That's what I thought it was probably doing. It's treating the open parens as a separator and splitting them. I was going to ask about coloring what's after it as a comment. I can add that, too.

from alive.

nobody-famous avatar nobody-famous commented on July 19, 2024

Should be fixed in version 0.0.9.

from alive.

smashedtoatoms avatar smashedtoatoms commented on July 19, 2024

Thanks for the quick turnaround on this!

from alive.

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.