1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

nix edit: support kakoune

This commit is contained in:
Hideaki Kawai 2022-03-22 23:18:02 +09:00
parent 8434869632
commit 3b776cb0a7
2 changed files with 5 additions and 4 deletions

View file

@ -204,7 +204,8 @@ Strings editorFor(const Pos & pos)
if (pos.line > 0 && ( if (pos.line > 0 && (
editor.find("emacs") != std::string::npos || editor.find("emacs") != std::string::npos ||
editor.find("nano") != std::string::npos || editor.find("nano") != std::string::npos ||
editor.find("vim") != std::string::npos)) editor.find("vim") != std::string::npos ||
editor.find("kak") != std::string::npos))
args.push_back(fmt("+%d", pos.line)); args.push_back(fmt("+%d", pos.line));
args.push_back(pos.file); args.push_back(pos.file);
return args; return args;

View file

@ -24,8 +24,8 @@ this attribute to the location of the definition of the
`meta.description`, `version` or `name` derivation attributes. `meta.description`, `version` or `name` derivation attributes.
The editor to invoke is specified by the `EDITOR` environment The editor to invoke is specified by the `EDITOR` environment
variable. It defaults to `cat`. If the editor is `emacs`, `nano` or variable. It defaults to `cat`. If the editor is `emacs`, `nano`,
`vim`, it is passed the line number of the derivation using the `vim` or `kak`, it is passed the line number of the derivation using
argument `+<lineno>`. the argument `+<lineno>`.
)"" )""