forked from lix-project/lix
16 lines
239 B
C++
16 lines
239 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include "types.hh"
|
|
#include "input-accessor.hh"
|
|
|
|
namespace nix {
|
|
|
|
/**
|
|
* Helper function to generate args that invoke $EDITOR on
|
|
* filename:lineno.
|
|
*/
|
|
Strings editorFor(const SourcePath & file, uint32_t line);
|
|
|
|
}
|