Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | refactor: use nvim.foo.bar format for autocommand groups | Maria José Solano | 2025-01-14 |
| | |||
* | feat(lua): allow vim.F.if_nil to take multiple arguments (#22903) | Gregory Anders | 2023-04-07 |
| | | | | | | | | | | | | The first argument which is non-nil is returned. This is useful when using nested default values (e.g. in the EditorConfig plugin). Before: local enable = vim.F.if_nil(vim.b.editorconfig, vim.F.if_nil(vim.g.editorconfig, true)) After: local enable = vim.F.if_nil(vim.b.editorconfig, vim.g.editorconfig, true) | ||
* | refactor(editorconfig)!: change editorconfig_enable to editorconfig | Gregory Anders | 2023-01-07 |
| | |||
* | feat(editorconfig): allow editorconfig to be toggled dynamically | Gregory Anders | 2023-01-07 |
| | | | | | | | | | Rather than only check `editorconfig_enable` when the plugin is loaded, check it each time the autocommand fires, so that users may enable or disable it dynamically. Also check for a buffer local version of the variable, so that editorconfig can be enabled or disabled per-buffer. | ||
* | feat(editorconfig): add builtin EditorConfig support | Gregory Anders | 2023-01-03 |