1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 13:41:15 +02:00
nix/src/libcmd/editor-for.hh

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);
}