diff options
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/args.cc | 13 | ||||
-rw-r--r-- | src/libutil/args.hh | 4 |
2 files changed, 0 insertions, 17 deletions
diff --git a/src/libutil/args.cc b/src/libutil/args.cc index ad7a268fc..ba15ea571 100644 --- a/src/libutil/args.cc +++ b/src/libutil/args.cc @@ -178,19 +178,6 @@ Strings argvToStrings(int argc, char * * argv) return args; } -Strings editorFor(Pos pos) -{ - auto editor = getEnv("EDITOR", "cat"); - auto args = tokenizeString<Strings>(editor); - if (pos.line > 0 && ( - editor.find("emacs") != std::string::npos || - editor.find("nano") != std::string::npos || - editor.find("vim") != std::string::npos)) - args.push_back(fmt("+%d", pos.line)); - args.push_back(pos.file); - return args; -} - std::string renderLabels(const Strings & labels) { std::string res; diff --git a/src/libutil/args.hh b/src/libutil/args.hh index 59d427ee6..b960a55a8 100644 --- a/src/libutil/args.hh +++ b/src/libutil/args.hh @@ -5,7 +5,6 @@ #include <memory> #include "util.hh" -#include "nixexpr.hh" namespace nix { @@ -242,9 +241,6 @@ public: Strings argvToStrings(int argc, char * * argv); -/* Helper function to generate args that invoke $EDITOR on filename:lineno */ -Strings editorFor(Pos pos); - /* Helper function for rendering argument labels. */ std::string renderLabels(const Strings & labels); |