mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
plugins/julia-cell: init + test
This commit is contained in:
parent
5b225c1b70
commit
e638f71f9e
3 changed files with 140 additions and 0 deletions
25
tests/test-sources/plugins/languages/julia/julia-cell.nix
Normal file
25
tests/test-sources/plugins/languages/julia/julia-cell.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.julia-cell.enable = true;
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.julia-cell = {
|
||||
enable = true;
|
||||
|
||||
delimitCellsBy = "marks";
|
||||
tag = "##";
|
||||
|
||||
keymaps = {
|
||||
silent = true;
|
||||
|
||||
executeCell = "a";
|
||||
executeCellJump = "b";
|
||||
run = "c";
|
||||
clear = "d";
|
||||
prevCell = "e";
|
||||
nextCell = "f";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue