Nix/src/libcmd/editor-for.hh

12 lines
190 B
C++
Raw Normal View History

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