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

16 lines
291 B
Nix
Raw Normal View History

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