File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed
Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ rest to use the defaults.
133133
134134``` lua
135135require (" text-transform" ).setup ({
136- -- Prints useful logs about what event are triggered, and reasons actions are executed .
136+ -- Prints information about internals of the plugin. Very verbose, only useful for debugging .
137137 debug = false ,
138138 -- Keymap configurations
139139 keymap = {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Your plugin configuration with its default values.
2222Default values:
2323>
2424 TextTransform.options = {
25- -- Prints useful logs about what event are triggered, and reasons actions are executed .
25+ -- Prints information about internals of the plugin. Very verbose, only useful for debugging .
2626 debug = false,
2727 -- Keymap configurations
2828 keymap = {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ local TextTransform = {}
99--- Default values:
1010--- @eval return MiniDoc.afterlines_to_code(MiniDoc.current.eval_section)
1111TextTransform .options = {
12- -- Prints useful logs about what event are triggered, and reasons actions are executed .
12+ -- Prints information about internals of the plugin. Very verbose, only useful for debugging .
1313 debug = false ,
1414 -- Keymap configurations
1515 keymap = {
Original file line number Diff line number Diff line change @@ -19,16 +19,16 @@ local items = {
1919 { label = " CONST_CASE" , value = " const_case" },
2020}
2121
22- local default_frequency = {
23- camel_case = 7 ,
24- snake_case = 6 ,
25- pascal_case = 5 ,
26- kebab_case = 4 ,
27- dot_case = 3 ,
28- title_case = 2 ,
29- const_case = 1 ,
30- }
31-
22+ -- local default_frequency = {
23+ -- camel_case = 7,
24+ -- snake_case = 6,
25+ -- pascal_case = 5,
26+ -- kebab_case = 4,
27+ -- dot_case = 3,
28+ -- title_case = 2,
29+ -- const_case = 1,
30+ -- }
31+ --
3232-- local frequency_file = vim.fn.stdpath("config") .. "/text-transform-frequency.json"
3333-- local frequency
3434-- if vim.fn.filereadable(frequency_file) == 0 then
You can’t perform that action at this time.
0 commit comments