-
-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
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
add some lispy support #374
Conversation
- following instructions in greghendershott#300, create public racket-mode function (`racket-lispy-visit-symbol-definition`) to be used by lispy - create helper function `racket--visit-symbol-definition` shared between `racket-lispy-visit-symbol-definition` and `racket-visit-definition`
Quick glance, this seems good. Just give me a day to find time to review it. As for #300, although I added a Also, can lispy handle there being 0 or more Racket values (0 being the I'm just thinking ahead to whether you'll need a similar wrapper for that, like you did here. |
Also, please test the scenario where I changed this recently to (by default) not automagically helpfully try to start things. See #344. |
no problem -- take the time you need! I have only added support for visiting definition and making
it just works well, actually! it asks to run the buffer, if user says yes, all works well, if user says no, it says you need to run the REPL first. |
Great -- thanks! |
OK I see. That makes sense. Also that limited thing is fine with me. Honestly, I'm a little "anxious" about the idea of racket-mode attempting to support lispy very broadly. From browsing the issues and code, I get the impression -- an initial impression, admittedly perhaps unfair -- that it is very ambitious, very opinionated, and very DWIM. Which is all great for a user, but it makes me a little nervous about the initial and ongoing effort to interoperate with it broadly and correctly. TL;DR one baby step at a time, is fine with me. |
although I've been using it for a while, I only use a very limited subset of it, so I wouldn't say my opinion is much more than an impression either, but I tend to agree with your assessment! I promise not to propose radical changes 🤞 |
racket-edit.el
Outdated
(racket--do-visit-def-or-mod 'def str))))) | ||
(str (racket--visit-symbol-definition str)))) | ||
|
||
(defsubst racket-lispy-visit-symbol-definition (str) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be a plain old defun
instead? Genuine question; I'm not sure. (Inlining across packages seems like it could be trouble. e.g. Someday we need to change this. We do. User updates racket-mode package. But. That doesn't mean lispy package necessarily gets recompiled then. Ergo confusion.)
I'm sorry to be slow to follow up. Traveling last week. Manged to get a head cold over the weekend. I added a comment/question about the use of |
** racket-edit.el - defsubst -> defun - shouldn't inline functions lightly, see `(elisp)Inline Functions`
Thanks! |
you were absolutely right about this, btw! I shouldn't inline things lightly, specially in a case like this.. thanks for the heads-up! |
The funny thing is, I didn't know for sure it was wrong. I just had a hunch. I recall some weirdness with racket-mode using Emacs Lisp macros -- even just used by/within itself -- when it comes time for users to do package updates. Even just updating just racket-mode, alone. That's what led to me adding a section to the docs, about uninstalling racket-mode, restarting Emacs, and innstalling racket-mode again, to be sure. I suppose Emacs Lisp is very much from the neighborhood that motivated Racket's "separate compilation guarantee". 😄 |
that and racket's CREPL ( I guess reloading everything all the time would make for an unpleasant editing experience, though.. |
just for the record, abo-abo acepted abo-abo/lispy#488 and even added (incomplete but still useful) eval functionality 🥂 |
following instructions in Function for sending string to repl #300, create public racket-mode function
(
racket-lispy-visit-symbol-definition
) to be used by lispyracket--visit-symbol-definition
sharedbetween
racket-lispy-visit-symbol-definition
andracket-visit-definition
lispy code at abo-abo/lispy@master...odanoburu:racket, I'll submit the PR to lispy after your approval