mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-16 03:06:17 +02:00
12 lines
190 B
C++
12 lines
190 B
C++
|
#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);
|
||
|
|
||
|
}
|