File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ with my_var or vice versa? This plugin is for you!
2525| ` kebab-case ` | ` my_var ` , ` myVar ` , ` MyVar ` | ` my-var ` |
2626| ` dot.case ` | ` my_var ` , ` my-var ` , ` MyVar ` | ` my.var ` |
2727| ` Title Case ` | ` my_var ` , ` my-var ` , ` MyVar ` | ` My Var ` |
28+ | ` CONST_CASE ` | ` my_var ` , ` my-var ` , ` MyVar ` | ` MY_VAR ` |
2829
2930## 📋 Installation
3031
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ function TextTransform.setup(options)
2626
2727 TextTransform .options = vim .tbl_deep_extend (" keep" , options , TextTransform .options )
2828
29- map = {
29+ local map = {
3030 [" &camelCase" ] = " TextTransform.camel_case" ,
3131 [" &snake_case" ] = " TextTransform.snake_case" ,
3232 [" &PascalCase" ] = " TextTransform.pascal_case" ,
You can’t perform that action at this time.
0 commit comments