1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "lix/libcmd/editor-for.hh"
#include "lix/libutil/environment-variables.hh"
#include "lix/libutil/source-path.hh"
#include "lix/libutil/strings.hh"
namespace nix {
Strings editorFor(const SourcePath & file, uint32_t line)
{
auto editor = getEnv("EDITOR").value_or("cat");
auto args = tokenizeString<Strings>(editor);
if (line > 0 && (
editor.find("emacs") != std::string::npos ||
editor.find("nano") != std::string::npos ||
editor.find("vim") != std::string::npos ||
editor.find("kak") != std::string::npos))
args.push_back(fmt("+%d", line));
args.push_back(file.canonical().abs());
return args;
}
}
|