mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-16 03:06:17 +02:00
15 lines
239 B
C++
15 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);
|
|
|
|
}
|