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

#include "types.hh"

namespace nix {

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

}