1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-02 07:07:46 +00:00

Merge pull request #69 from fdncred/update_table_syntax

update to the new table syntax
This commit is contained in:
Darren Schroeder 2021-06-26 18:04:57 -05:00 committed by GitHub
commit 5a16e3060e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 22 deletions

View file

@ -4,13 +4,12 @@
def do-work [] { def do-work [] {
let site_table = [ let site_table = [
[site repo [site repo];
]; [Nushell nushell [Nushell nushell]
] [Extension vscode-nushell-lang [Extension vscode-nushell-lang]
] [Documentation nushell.github.io [Documentation nushell.github.io]
] [Wasm demo [Wasm demo]
] [Nu_Scripts nu_scripts [Nu_Scripts nu_scripts] [RFCs rfcs]
] [RFCs rfcs]
# ] [Jupyter jupyter] # ] [Jupyter jupyter]
] ]

View file

@ -4,13 +4,13 @@
def do-work [] { def do-work [] {
let site_table = [ let site_table = [
[site repo [site repo];
]; [Nushell nushell [Nushell nushell]
] [Extension vscode-nushell-lang [Extension vscode-nushell-lang]
] [Documentation nushell.github.io [Documentation nushell.github.io]
] [Wasm demo [Wasm demo]
] [Nu_Scripts nu_scripts [Nu_Scripts nu_scripts]
] [RFCs rfcs] [RFCs rfcs]
# ] [Jupyter jupyter] # ] [Jupyter jupyter]
] ]

View file

@ -1,12 +1,12 @@
let table = (echo [ let table = (echo [
[url user_login title [url user_login title];
]; [https://api.github.com/repos/nushell/nushell/issues/3382 ammkrn 'Dont unwrap rustyline helper in cli' [https://api.github.com/repos/nushell/nushell/issues/3382 ammkrn 'Dont unwrap rustyline helper in cli']
] [https://api.github.com/repos/nushell/nushell/issues/3379 jonathandturner 'Simplify down to one type of context' [https://api.github.com/repos/nushell/nushell/issues/3379 jonathandturner 'Simplify down to one type of context']
] [https://api.github.com/repos/nushell/nushell/issues/3377 kubouch 'Port range to engine-p' [https://api.github.com/repos/nushell/nushell/issues/3377 kubouch 'Port range to engine-p']
] [https://api.github.com/repos/nushell/nushell/issues/3375 fdncred 'added check for endian-ness, added a bytes and skip' [https://api.github.com/repos/nushell/nushell/issues/3375 fdncred 'added check for endian-ness, added a bytes and skip']
] [https://api.github.com/repos/nushell/nushell/issues/3374 fdncred 'added ability to change "#" color using header_color' [https://api.github.com/repos/nushell/nushell/issues/3374 fdncred 'added ability to change "]
] [https://api.github.com/repos/nushell/nushell/issues/3370 fdncred 'add nu-pretty-hex, add into binary, update binaryview' [https://api.github.com/repos/nushell/nushell/issues/3370 fdncred 'add nu-pretty-hex, add into binary, update binaryview']
] [https://api.github.com/repos/nushell/nushell/issues/3367 fdncred 'tweaked the error handling to show specific errors'] [https://api.github.com/repos/nushell/nushell/issues/3367 fdncred 'tweaked the error handling to show specific errors']
]) ])
# Show what the table looks like # Show what the table looks like