tangled
alpha
login
or
join now
ptr.pet
/
faunu
2
fork
atom
nushell on your web browser
nushell
wasm
terminal
2
fork
atom
overview
issues
pulls
pipelines
cd takes filepath
ptr.pet
2 months ago
fdf291b9
39dd2153
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+1
-1
1 changed file
expand all
collapse all
unified
split
src
cmd
cd.rs
+1
-1
src/cmd/cd.rs
···
20
20
21
21
fn signature(&self) -> Signature {
22
22
Signature::build("cd")
23
23
-
.optional("path", SyntaxShape::String, "the path to change into")
23
23
+
.optional("path", SyntaxShape::Filepath, "the path to change into")
24
24
.input_output_type(Type::Nothing, Type::Nothing)
25
25
.category(Category::FileSystem)
26
26
}