2023-02-04 03:42:36 +00:00
|
|
|
#pragma once
|
2023-04-01 03:18:41 +00:00
|
|
|
///@file
|
2023-02-04 03:42:36 +00:00
|
|
|
|
|
|
|
#include "types.hh"
|
2023-04-06 11:15:50 +00:00
|
|
|
#include "input-accessor.hh"
|
2023-02-04 03:42:36 +00:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Helper function to generate args that invoke $EDITOR on
|
|
|
|
* filename:lineno.
|
|
|
|
*/
|
2023-04-06 11:15:50 +00:00
|
|
|
Strings editorFor(const SourcePath & file, uint32_t line);
|
2023-02-04 03:42:36 +00:00
|
|
|
|
|
|
|
}
|