You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now a function can be given for `padding` which can return a boolean.
This will allow commenting in `norg` files. Previously it wasn't
possible because of it's strict commenting rules.
```lua
require('Comment').setup({
padding = function ()
return vim.bo.filetype ~= 'norg'
end
})
````
0 commit comments