Skip to content
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 Nushell support #119

Merged
merged 2 commits into from
Apr 11, 2024
Merged

Add Nushell support #119

merged 2 commits into from
Apr 11, 2024

Conversation

purcell
Copy link
Owner

@purcell purcell commented Apr 10, 2024

See #109.

Currently a bit of a messy addition, but good enough to try out. Works by asking nu to print the relevant env vars as JSON, then Emacs parses the result. This is actually cleaner than the printf approach. Certain vars (e.g. PATH) are arrays inside nu, so we artificially join them back into a single string with path-separator (usually :) so that the result lines up with that from other shells.

(setq values (cdr values)
names (cdr names))))
result)))
(if (exec-path-from-shell--nushell-p)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the only thing I found that didn't work in the PR. This function seems to take an argument (the shell) but that is missing here. I tried adding the argument in my local copy as (exec-path-from-shell--shell) and after that it was working pretty much perfect, including getting additional environment variables from the nushell env.

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, silly mistake when I tied it together at the last minute then. Thanks for the feedback. I'll fix that issue and merge, then you can see how you get along with the MELPA version.

@KaranAhlawat
Copy link

I didn't know how else to leave a comment at the correct line, so I may have started a review...sorry about that. But yes, as the comment says, everything works after we pass in the shell as the argument to the exec-path-from-shell--nushell-p function.

@purcell purcell merged commit 32b6b97 into master Apr 11, 2024
11 checks passed
@purcell
Copy link
Owner Author

purcell commented Apr 11, 2024

(P.S. the way to create a plain comment is to click the other button: the default green one is labelled "Start a review", the other says "Comment". I make this mistake all the time myself.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants