diff options
Diffstat (limited to '')
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/cli.zig | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -352,6 +352,8 @@ port = 5000 [debug] # When navigating to a blob: or src: link, open the file in your editor +# If not, it tries $EDITOR or $VISUAL +# If that still fails, it will try Visual Studio Code, then Sublime Text, then a few others editor = "code" # List of editors: diff --git a/src/cli.zig b/src/cli.zig index 4a98775d4..5ca464d50 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -720,6 +720,7 @@ pub const Command = struct { // technical debt macros: ?MacroMap = null, + editor: string = "", package_bundle_map: std.StringArrayHashMapUnmanaged(options.BundlePackage) = std.StringArrayHashMapUnmanaged(options.BundlePackage){}, }; |