1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

Revert "Use HintFmt for doc comments"

Unfortunately these don't render correctly, because they go into the
markdown renderer, instead of the terminal.

```
nix-repl> :doc lib.version
Attribute '[35;1mversion[0m'

    … defined at [35;1m/home/user/h/nixpkgs/lib/default.nix:73:40[0m
```

We could switch that to go direct to the terminal, but then we should
do the same for the primops, to get a consistent look.

Reverting for now.

This reverts commit 3413e0338cbee1c7734d5cb614b5325e51815cde.
This commit is contained in:
Robert Hensing 2024-07-15 19:55:05 +02:00
parent ce31a0457f
commit 03d33703ef
2 changed files with 6 additions and 6 deletions

View file

@ -576,17 +576,17 @@ std::optional<EvalState::Doc> EvalState::getDoc(Value & v)
}
if (name.empty()) {
s << HintFmt("Function ");
s << "Function ";
}
else {
s << HintFmt("Function '%s'", name);
s << "Function `" << name << "`";
if (pos)
s << "\\\n" ;
else
s << "\\\n";
}
if (pos) {
s << HintFmt("defined at %1%", pos);
s << "defined at " << pos;
}
if (!docStr.empty()) {
s << "\n\n";