From fe2c5589632f94d460de9d118e8305d620add44d Mon Sep 17 00:00:00 2001 From: Andrej Kolchin Date: Fri, 26 Jul 2024 14:05:25 +0300 Subject: [PATCH] search: move registry columns to the right It should improve rendering in narrow terminal windows. Resolve #96 --- nupm/search.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nupm/search.nu b/nupm/search.nu index e4dc200..0291a59 100644 --- a/nupm/search.nu +++ b/nupm/search.nu @@ -14,13 +14,13 @@ export def main [ | flatten | each {|row| { - registry_name: $row.registry_name - registry_path: $row.registry_path name: $row.pkgs.name version: $row.pkgs.version path: $row.pkgs.path type: $row.pkgs.type info: $row.pkgs.info + registry_name: $row.registry_name + registry_path: $row.registry_path } } | filter-by-version $pkg_version