nix-community.nixvim/tests/test-sources/modules/autocmd.nix

24 lines
371 B
Nix
Raw Permalink Normal View History

2023-03-22 07:42:02 +01:00
{
example = {
autoCmd = [
{
2024-05-05 19:39:35 +02:00
event = [
"BufEnter"
"BufWinEnter"
];
pattern = [
"*.c"
"*.h"
];
callback = {
__raw = "function() print('This buffer enters') end";
};
2023-03-22 07:42:02 +01:00
}
{
event = "InsertEnter";
command = "norm zz";
}
];
};
}