forked from lix-project/lix
libutil: add editorFor heuristic
This commit is contained in:
parent
73ff84f6a8
commit
207a537343
|
@ -178,6 +178,19 @@ Strings argvToStrings(int argc, char * * argv)
|
|||
return args;
|
||||
}
|
||||
|
||||
Strings editorFor(std::string filename, int lineno)
|
||||
{
|
||||
auto editor = getEnv("EDITOR", "cat");
|
||||
auto args = tokenizeString<Strings>(editor);
|
||||
if (lineno > 0 && (
|
||||
editor.find("emacs") != std::string::npos ||
|
||||
editor.find("nano") != std::string::npos ||
|
||||
editor.find("vim") != std::string::npos))
|
||||
args.push_back(fmt("+%d", lineno));
|
||||
args.push_back(filename);
|
||||
return args;
|
||||
}
|
||||
|
||||
std::string renderLabels(const Strings & labels)
|
||||
{
|
||||
std::string res;
|
||||
|
|
|
@ -190,6 +190,9 @@ public:
|
|||
|
||||
Strings argvToStrings(int argc, char * * argv);
|
||||
|
||||
/* Helper function to generate args that invoke $EDITOR on filename:lineno */
|
||||
Strings editorFor(std::string filename, int lineno);
|
||||
|
||||
/* Helper function for rendering argument labels. */
|
||||
std::string renderLabels(const Strings & labels);
|
||||
|
||||
|
|
|
@ -59,22 +59,15 @@ struct CmdEdit : InstallableCommand
|
|||
throw Error("cannot parse line number '%s'", pos);
|
||||
}
|
||||
|
||||
auto editor = getEnv("EDITOR", "cat");
|
||||
|
||||
auto args = tokenizeString<Strings>(editor);
|
||||
|
||||
if (editor.find("emacs") != std::string::npos ||
|
||||
editor.find("nano") != std::string::npos ||
|
||||
editor.find("vim") != std::string::npos)
|
||||
args.push_back(fmt("+%d", lineno));
|
||||
|
||||
args.push_back(filename);
|
||||
|
||||
stopProgressBar();
|
||||
|
||||
auto args = editorFor(filename, lineno);
|
||||
|
||||
execvp(args.front().c_str(), stringsToCharPtrs(args).data());
|
||||
|
||||
throw SysError("cannot run editor '%s'", editor);
|
||||
std::string command;
|
||||
for (const auto &arg : args) command += " '" + arg + "'";
|
||||
throw SysError("cannot run command%s", command);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -506,15 +506,8 @@ bool NixRepl::processLine(string line)
|
|||
}
|
||||
|
||||
// Open in EDITOR
|
||||
auto editor = getEnv("EDITOR", "cat");
|
||||
auto args = tokenizeString<Strings>(editor);
|
||||
if (lineno > 0 && (
|
||||
editor.find("emacs") != std::string::npos ||
|
||||
editor.find("nano") != std::string::npos ||
|
||||
editor.find("vim") != std::string::npos))
|
||||
args.push_back(fmt("+%d", lineno));
|
||||
args.push_back(filename);
|
||||
editor = args.front();
|
||||
auto args = editorFor(filename, lineno);
|
||||
auto editor = args.front();
|
||||
args.pop_front();
|
||||
runProgram(editor, args);
|
||||
|
||||
|
|
Loading…
Reference in a new issue