aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/editor-for.hh
blob: 8acd7011e69929875f1428f5d5731c99db64efb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
///@file

#include "types.hh"
#include "source-path.hh"

namespace nix {

/**
 * Helper function to generate args that invoke $EDITOR on
 * filename:lineno.
 */
Strings editorFor(const SourcePath & file, uint32_t line);

}