Skip to content

Commit

Permalink
fix(setup.md): Quote the EDITOR value (#1815)
Browse files Browse the repository at this point in the history
help: the parsing of assignments was changed in 0.97.0, and this would have previously been treated as a string. 

Alternatively, quote the string with single or double
        quotes to avoid it being interpreted as a command name. This restriction may be removed in a future release.
  • Loading branch information
choan authored Feb 22, 2025
1 parent 507ef22 commit 6b20574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cookbook/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Note: if you've never used `vim` before and you want to leave typing `:q!` will
Go to the end of the file and add

```nu
$env.EDITOR = vim
$env.EDITOR = 'vim'
```

or `emacs`, `vscode` or whatever editor you like. Don't forget that the program needs to be accessible on the `PATH`
Expand Down

0 comments on commit 6b20574

Please sign in to comment.