mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
nix repl: also handle lambda edit
This commit is contained in:
parent
3774fe55fd
commit
d407f4d15f
1 changed files with 2 additions and 0 deletions
|
@ -478,6 +478,8 @@ bool NixRepl::processLine(string line)
|
|||
PathSet context;
|
||||
auto filename = state.coerceToString(noPos, v, context);
|
||||
pos.file = state.symbols.create(filename);
|
||||
} else if (v.type == tLambda) {
|
||||
pos = v.lambda.fun->pos;
|
||||
} else {
|
||||
// assume it's a derivation
|
||||
pos = findDerivationFilename(state, v, arg);
|
||||
|
|
Loading…
Reference in a new issue