mirror of
https://github.com/NixOS/nix.git
synced 2025-11-26 12:10:59 +01:00
The REPL itself and the `nix repl` CLI are conceptually different things, and thus deserve to be in different files.
11 lines
190 B
C++
11 lines
190 B
C++
#pragma once
|
|
|
|
#include "types.hh"
|
|
|
|
namespace nix {
|
|
|
|
/* Helper function to generate args that invoke $EDITOR on
|
|
filename:lineno. */
|
|
Strings editorFor(const Path & file, uint32_t line);
|
|
|
|
}
|