diff options
author | 2022-02-18 20:50:03 -0800 | |
---|---|---|
committer | 2022-02-18 20:50:03 -0800 | |
commit | ab871d771a94e99c5fcc00bc04531ee9dcee729a (patch) | |
tree | b22961ba887fdce506915aa26a0a78ae2330a2fe | |
parent | e11f44e0392ba8f112b73e6c03c1465fb55f6add (diff) | |
download | bun-ab871d771a94e99c5fcc00bc04531ee9dcee729a.tar.gz bun-ab871d771a94e99c5fcc00bc04531ee9dcee729a.tar.zst bun-ab871d771a94e99c5fcc00bc04531ee9dcee729a.zip |
Mention behavior
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){}, }; |