nushell on your web browser
nushell wasm terminal

use table for ls and job list

ptr.pet 2680e524 6f317b2d

verified
Changed files
+2 -2
src
+1 -1
src/cmd/job_list.rs
··· 14 15 fn signature(&self) -> Signature { 16 Signature::build("job list") 17 - .input_output_type(Type::Nothing, Type::record()) 18 .category(Category::System) 19 } 20
··· 14 15 fn signature(&self) -> Signature { 16 Signature::build("job list") 17 + .input_output_type(Type::Nothing, Type::table()) 18 .category(Category::System) 19 } 20
+1 -1
src/cmd/ls.rs
··· 39 Some('l'), 40 ) 41 .switch("full-paths", "display paths as absolute paths", Some('f')) 42 - .input_output_type(Type::Nothing, Type::record()) 43 .category(Category::FileSystem) 44 } 45
··· 39 Some('l'), 40 ) 41 .switch("full-paths", "display paths as absolute paths", Some('f')) 42 + .input_output_type(Type::Nothing, Type::table()) 43 .category(Category::FileSystem) 44 } 45