···27272828* The `push.branch-prefix` option was renamed to `git.push-branch-prefix`.
29293030+* The default editor on Windows is now `Notepad` instead of `pico`.
3131+3032### New features
31333234* `jj init --git-repo` now works with bare repositories.
+1-1
cli/src/commands/mod.rs
···433433/// Update the change description or other metadata
434434///
435435/// Starts an editor to let you edit the description of a change. The editor
436436-/// will be $EDITOR, or `pico` if that's not defined.
436436+/// will be $EDITOR, or `pico` if that's not defined (`Notepad` on Windows).
437437#[derive(clap::Args, Clone, Debug)]
438438struct DescribeArgs {
439439 /// The revision whose description to edit
···294294295295`$JJ_EDITOR` > `ui.editor` > `$VISUAL` > `$EDITOR`
296296297297-Pico is the default editor in the absence of any other setting, but you could
298298-set it explicitly too.
297297+Pico is the default editor (Notepad on Windows) in the absence of any other
298298+setting, but you could set it explicitly too.
299299300300```toml
301301ui.editor = "pico"
+1-1
docs/config.toml
···77ui.color = "auto" # the default
88# ui.color = never # no color
991010-ui.editor = "pico" # the default
1010+ui.editor = "pico" # the default on Unix
1111# ui.editor = "vim"
12121313ui.diff-editor = "meld" # default, requires meld to be installed
+3-2
docs/tutorial.md
···3939instead of "Hello". Let's start by describing the change (adding a
4040commit message) so we don't forget what we're working on:
4141```shell script
4242-# This will bring up $EDITOR (or `pico` by default). Enter something like
4343-# "Say goodbye" in the editor and then save the file and close the editor.
4242+# This will bring up $EDITOR (or `pico` or `Notepad` by default). Enter
4343+# something like "Say goodbye" in the editor and then save the file and close
4444+# the editor.
4445$ jj describe
4546Working copy now at: e427edcfd0ba Say goodbye
4647```