Skip to content

Commit 6b20574

Browse files
authored
fix(setup.md): Quote the EDITOR value (nushell#1815)
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.
1 parent 507ef22 commit 6b20574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cookbook/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Note: if you've never used `vim` before and you want to leave typing `:q!` will
4949
Go to the end of the file and add
5050

5151
```nu
52-
$env.EDITOR = vim
52+
$env.EDITOR = 'vim'
5353
```
5454

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

0 commit comments

Comments
 (0)