Skip to content

Commit b31967d

Browse files
committed
docs: update docs
chore: comment out unused code
1 parent 6f1c928 commit b31967d

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ rest to use the defaults.
133133

134134
```lua
135135
require("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 = {

doc/text-transform.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Your plugin configuration with its default values.
2222
Default 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 = {

lua/text-transform/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local TextTransform = {}
99
--- Default values:
1010
---@eval return MiniDoc.afterlines_to_code(MiniDoc.current.eval_section)
1111
TextTransform.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 = {

lua/text-transform/telescope.lua

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)