mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
95 lines
2.1 KiB
Nix
95 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
let
|
|
# The keys are the option name in nixvim (under plugins.julia-cell.keymaps)
|
|
# cmd: Such that the mapping action is ':JuliaCell${cmd}<CR>'
|
|
# desc: The description of the option.
|
|
mappings = {
|
|
executeCell = {
|
|
cmd = "ExecuteCell";
|
|
desc = "executing the current code cell";
|
|
};
|
|
executeCellJump = {
|
|
cmd = "ExecuteCellJump";
|
|
desc = "executing the current code cell and jumping to the next cell";
|
|
};
|
|
run = {
|
|
cmd = "Run";
|
|
desc = "running the entire file";
|
|
};
|
|
clear = {
|
|
cmd = "Clear";
|
|
desc = "clearing the REPL";
|
|
};
|
|
prevCell = {
|
|
cmd = "PrevCell";
|
|
desc = "jumping to the previous cell header";
|
|
};
|
|
nextCell = {
|
|
cmd = "NextCell";
|
|
desc = "jumping to the next cell header";
|
|
};
|
|
};
|
|
in
|
|
with lib;
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "julia-cell";
|
|
packPathName = "vim-julia-cell";
|
|
package = "vim-julia-cell";
|
|
globalPrefix = "julia_cell_";
|
|
|
|
maintainers = [ maintainers.GaetanLepage ];
|
|
|
|
# TODO introduced 2024-02-19: remove 2024-04-19
|
|
deprecateExtraConfig = true;
|
|
optionsRenamedToSettings = [
|
|
"delimitCellsBy"
|
|
"tag"
|
|
];
|
|
|
|
settingsOptions = {
|
|
delimit_cells_by =
|
|
helpers.defaultNullOpts.mkEnumFirstDefault
|
|
[
|
|
"marks"
|
|
"tags"
|
|
]
|
|
''
|
|
Specifies if cells are delimited by 'marks' or 'tags'.
|
|
'';
|
|
|
|
tag = helpers.defaultNullOpts.mkStr "##" "Specifies the tag format.";
|
|
};
|
|
|
|
extraOptions = {
|
|
keymaps =
|
|
{
|
|
silent = mkOption {
|
|
type = types.bool;
|
|
description = "Whether julia-cell keymaps should be silent";
|
|
default = false;
|
|
};
|
|
}
|
|
// (mapAttrs (name: value: helpers.mkNullOrOption types.str "Keymap for ${value.desc}.") mappings);
|
|
};
|
|
|
|
extraConfig = cfg: {
|
|
keymaps = flatten (
|
|
mapAttrsToList (
|
|
name: value:
|
|
let
|
|
key = cfg.keymaps.${name};
|
|
in
|
|
optional (key != null) {
|
|
mode = "n";
|
|
inherit key;
|
|
action = ":JuliaCell${value.cmd}<CR>";
|
|
options.silent = cfg.keymaps.silent;
|
|
}
|
|
) mappings
|
|
);
|
|
};
|
|
}
|