aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/editor-for.hh
blob: 8fbd08792a9d65fa1a5984f16063944a38e908a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);

}