this wrapper removes the 0
entries in the gstat
output 👍
Note
seenu_plugin_gstat
# wrapper around the [`gstat`](https://github.com/nushell/nushell/tree/main/crates/nu_plugin_gstat) plugin
def gst [
path: path = "." # path to repo
--summary (-s): bool # remove 0 values
] {
gstat $path | if $summary {
transpose key value
| where value != 0
| transpose -r
| into record
} else {}
}