mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-27 05:55:03 +03:00
22 lines
393 B
Markdown
22 lines
393 B
Markdown
# Pesto
|
|
|
|
Pesto gives you the extra sauce on top of your lambda noodles.
|
|
|
|
From a given lambda position extract doc comments and some metadata.
|
|
|
|
## Plugin for Noogle
|
|
|
|
Extract 'nixdoc style comments' or doc-comment (RFC145) from a given file position.
|
|
|
|
Usage:
|
|
|
|
```sh
|
|
pesto --file "attrsets.nix" --line "11" --column "3"
|
|
->
|
|
{
|
|
"doc": "content",
|
|
"arguments": {},
|
|
"countApplied": 3
|
|
}
|
|
```
|