├── .github └── workflows │ ├── lint.yml │ ├── panvimdoc.yml │ └── spec.yml ├── .gitignore ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .stylua.toml ├── .tool-versions ├── LICENSE ├── README.md ├── doc └── ts-node-action.txt ├── lua └── ts-node-action │ ├── actions │ ├── conceal_string.lua │ ├── cycle_case.lua │ ├── cycle_quotes.lua │ ├── init.lua │ ├── toggle_boolean.lua │ ├── toggle_int_readability.lua │ ├── toggle_multiline.lua │ └── toggle_operator.lua │ ├── filetypes │ ├── c_sharp.lua │ ├── git_rebase.lua │ ├── global.lua │ ├── html.lua │ ├── init.lua │ ├── javascript.lua │ ├── json.lua │ ├── julia.lua │ ├── lua.lua │ ├── php.lua │ ├── python.lua │ ├── r.lua │ ├── ruby.lua │ ├── rust.lua │ ├── sql.lua │ └── yaml.lua │ ├── helpers.lua │ ├── init.lua │ └── repeat.lua ├── run_spec └── spec ├── filetypes ├── c_sharp.lua ├── git_rebase │ └── cycle_command_spec.lua ├── javascript_spec.lua ├── julia_spec.lua ├── lua_spec.lua ├── python │ ├── comparison_operator_spec.lua │ ├── conditional_expression_spec.lua │ ├── conditional_padding_spec.lua │ ├── if_statement_spec.lua │ └── quotes_spec.lua ├── r_spec.lua ├── ruby_spec.lua ├── sql_spec.lua └── yaml_spec.lua ├── init.lua └── spec_helper.lua /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/panvimdoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/.github/workflows/panvimdoc.yml -------------------------------------------------------------------------------- /.github/workflows/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/.github/workflows/spec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | spec/support/**/* 2 | -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/.stylua.toml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | rust 1.71.0 2 | python 3.10.12 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/README.md -------------------------------------------------------------------------------- /doc/ts-node-action.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/doc/ts-node-action.txt -------------------------------------------------------------------------------- /lua/ts-node-action/actions/conceal_string.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/actions/conceal_string.lua -------------------------------------------------------------------------------- /lua/ts-node-action/actions/cycle_case.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/actions/cycle_case.lua -------------------------------------------------------------------------------- /lua/ts-node-action/actions/cycle_quotes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/actions/cycle_quotes.lua -------------------------------------------------------------------------------- /lua/ts-node-action/actions/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/actions/init.lua -------------------------------------------------------------------------------- /lua/ts-node-action/actions/toggle_boolean.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/actions/toggle_boolean.lua -------------------------------------------------------------------------------- /lua/ts-node-action/actions/toggle_int_readability.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/actions/toggle_int_readability.lua -------------------------------------------------------------------------------- /lua/ts-node-action/actions/toggle_multiline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/actions/toggle_multiline.lua -------------------------------------------------------------------------------- /lua/ts-node-action/actions/toggle_operator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/actions/toggle_operator.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/c_sharp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/c_sharp.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/git_rebase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/git_rebase.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/global.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/html.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/html.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/init.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/javascript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/javascript.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/json.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/julia.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/julia.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/lua.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/php.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/php.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/python.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/python.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/r.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/r.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/ruby.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/ruby.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/rust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/rust.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/sql.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/sql.lua -------------------------------------------------------------------------------- /lua/ts-node-action/filetypes/yaml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/filetypes/yaml.lua -------------------------------------------------------------------------------- /lua/ts-node-action/helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/helpers.lua -------------------------------------------------------------------------------- /lua/ts-node-action/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/init.lua -------------------------------------------------------------------------------- /lua/ts-node-action/repeat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/lua/ts-node-action/repeat.lua -------------------------------------------------------------------------------- /run_spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/run_spec -------------------------------------------------------------------------------- /spec/filetypes/c_sharp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/c_sharp.lua -------------------------------------------------------------------------------- /spec/filetypes/git_rebase/cycle_command_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/git_rebase/cycle_command_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/javascript_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/javascript_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/julia_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/julia_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/lua_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/lua_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/python/comparison_operator_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/python/comparison_operator_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/python/conditional_expression_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/python/conditional_expression_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/python/conditional_padding_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/python/conditional_padding_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/python/if_statement_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/python/if_statement_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/python/quotes_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/python/quotes_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/r_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/r_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/ruby_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/ruby_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/sql_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/sql_spec.lua -------------------------------------------------------------------------------- /spec/filetypes/yaml_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/filetypes/yaml_spec.lua -------------------------------------------------------------------------------- /spec/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/init.lua -------------------------------------------------------------------------------- /spec/spec_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CKolkey/ts-node-action/HEAD/spec/spec_helper.lua --------------------------------------------------------------------------------