You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some very rough preliminary testing shows them to return the same results in a few different file types that I've checked, however in Common Lisp, this is a valid function call/name for a function titled #/something:
(#/something "here")
If the cursor is on the #, it won't find a valid symbol, while it will find the match if using the sexp type (I assume the sexp is just grabbing until the first whitespace.
Granted, this is quite unusual, especially considering CL uses the sharpsign as a way to reference functions like #'symbol-name as well.
Thoughts?
The text was updated successfully, but these errors were encountered:
Thanks for opening this! You're definitely on to something and this may be the proper solution for the likes of #168 and #174 (vs what I actually did). I thought I had started with sexp then moved over to using symbol (for a reason I can't remember) but after a very quick look I can't find evidence of this.
I am definitely going to look closer into this tonight or this weekend and report back. Thanks again for opening this!
Some very rough preliminary testing shows them to return the same results in a few different file types that I've checked, however in Common Lisp, this is a valid function call/name for a function titled
#/something
:(#/something "here")
If the cursor is on the
#
, it won't find a valid symbol, while it will find the match if using the sexp type (I assume the sexp is just grabbing until the first whitespace.Granted, this is quite unusual, especially considering CL uses the sharpsign as a way to reference functions like
#'symbol-name
as well.Thoughts?
The text was updated successfully, but these errors were encountered: