diff options
author | Will Dietz <w@wdtz.org> | 2018-07-27 09:52:54 -0500 |
---|---|---|
committer | Will Dietz <w@wdtz.org> | 2018-07-27 10:45:35 -0500 |
commit | 0d72f4e0ca3e88f3ded66112a6b157e14c2724c4 (patch) | |
tree | 6e66a6c4852500473e71602fddcb1970e27d73a2 /src/nix | |
parent | f602ff264beafd8f7bb5a17d63c7b9412c5fc6eb (diff) |
search: include version
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/search.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nix/search.cc b/src/nix/search.cc index 4cb1efa79..e086de226 100644 --- a/src/nix/search.cc +++ b/src/nix/search.cc @@ -173,10 +173,12 @@ struct CmdSearch : SourceExprCommand, MixJSON jsonElem.attr("description", description); } else { + auto name = hilite(parsed.name, nameMatch, "\e[0;2m") + + std::string(parsed.fullName, parsed.name.length()); results[attrPath] = fmt( "* %s (%s)\n %s\n", wrap("\e[0;1m", hilite(attrPath, attrPathMatch, "\e[0;1m")), - wrap("\e[0;2m", hilite(parsed.fullName, nameMatch, "\e[0;2m")), + wrap("\e[0;2m", hilite(name, nameMatch, "\e[0;2m")), hilite(description, descriptionMatch, ANSI_NORMAL)); } } |