From 786022290eb7d88ad267a850f560af40c775b80c Mon Sep 17 00:00:00 2001 From: Bruce Weirdan Date: Tue, 10 Feb 2026 19:50:30 +0100 Subject: [PATCH] Fix `buffer_editor` example for `code` The editor is supposed to exit only when the editing is done, and `-w` makes `code` to behave that way. --- book/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/configuration.md b/book/configuration.md index a61881863cb..090063b5208 100644 --- a/book/configuration.md +++ b/book/configuration.md @@ -20,7 +20,7 @@ can get started with just a few simple steps: For example: ```nu - $env.config.buffer_editor = "code" + $env.config.buffer_editor = ["code", "-w"] # or $env.config.buffer_editor = "nano" # or