We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b0faa commit 88d1437Copy full SHA for 88d1437
crates/nu-parser/src/parser.rs
@@ -6127,6 +6127,7 @@ pub fn parse_builtin_commands(
6127
b"extern" => parse_extern(working_set, lite_command, None),
6128
// `parse_export_in_block` also handles attributes by itself
6129
b"export" => parse_export_in_block(working_set, lite_command),
6130
+ b"export-env" => parse_export_env(working_set, &lite_command.parts).0,
6131
// Other definitions can't have attributes, so we handle attributes here with parse_attribute_block
6132
_ if lite_command.has_attributes() => parse_attribute_block(working_set, lite_command),
6133
b"let" => parse_let(
0 commit comments