mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
plugins/languages: move to by-name
This commit is contained in:
parent
9d323f3ec7
commit
b1d0959bc9
71 changed files with 19 additions and 36 deletions
|
@ -1,95 +0,0 @@
|
|||
{
|
||||
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;
|
||||
helpers.vim-plugin.mkVimPlugin {
|
||||
name = "julia-cell";
|
||||
originalName = "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
|
||||
);
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue