I want to be able to set camelCase on by default.
For the modify tags i would like to change it to use the camcelCase by default. i know we can use the command GoAddTag json -transform camelcase
however it would be better to be able to set it by default for my setup.
maybe provide a way to change configs for the pages. not sure where to start for this so i can help.
btw in gopher we can do the following
require("gopher").setup{
gotag = {
transform = "camelcase"
}
}
would be cool to be able to configure the used packages directly
Could you try e.g. in setup
tag_transform = 'camelcase' , -- set to e.g. 'snakecase' to transform to snake_case
This is default to false
will give that a go and let you know if it works, thanks
Could you try e.g. in setup
tag_transform = 'camelcase' , -- set to e.g. 'snakecase' to transform to snake_caseThis is default to
false
This worked, thanks.