We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
node-external-editor/src/index.ts
Lines 141 to 142 in e1070a8
This doesn't account for env variables in the EDITOR variable and people might keep smth like this there:
NVIM_TUI_ENABLE_COLOR=1 nvim
which leads to an attempt to spawn NVIM_TUI_ENABLE_COLOR=1 here:
NVIM_TUI_ENABLE_COLOR=1
Lines 191 to 192 in e1070a8
I'm not suuuuper sure if it's valid to keep env vars in EDITOR like this but according to my testing at least git handles this OK.
git
This got initially reported here: changesets/changesets#498
The text was updated successfully, but these errors were encountered:
changeset
No branches or pull requests
node-external-editor/src/index.ts
Lines 141 to 142 in e1070a8
This doesn't account for env variables in the EDITOR variable and people might keep smth like this there:
which leads to an attempt to spawn
NVIM_TUI_ENABLE_COLOR=1
here:node-external-editor/src/index.ts
Lines 191 to 192 in e1070a8
which is, obviously, not correct 😉
I'm not suuuuper sure if it's valid to keep env vars in EDITOR like this but according to my testing at least
git
handles this OK.This got initially reported here:
changesets/changesets#498
The text was updated successfully, but these errors were encountered: