diff options
author | rxi <rxi@users.noreply.github.com> | 2020-04-23 20:49:37 +0100 |
---|---|---|
committer | rxi <rxi@users.noreply.github.com> | 2020-04-23 20:49:37 +0100 |
commit | 676f04945010aeb2ae71325bf2d1d6f336a5e162 (patch) | |
tree | 31b2e18df5e84fbc731840e5f1b28c974eea868a | |
parent | 9049e189d49440939192874d54af15a21eebbafb (diff) | |
download | lite-xl-plugins-676f04945010aeb2ae71325bf2d1d6f336a5e162.tar.gz lite-xl-plugins-676f04945010aeb2ae71325bf2d1d6f336a5e162.zip |
Moved all plugins to `plugins` dir
-rw-r--r-- | README.md | 36 | ||||
-rw-r--r-- | plugins/autowrap.lua (renamed from autowrap.lua) | 0 | ||||
-rw-r--r-- | plugins/bracketmatch.lua (renamed from bracketmatch.lua) | 0 | ||||
-rw-r--r-- | plugins/eval.lua (renamed from eval.lua) | 0 | ||||
-rw-r--r-- | plugins/gofmt.lua (renamed from gofmt.lua) | 0 | ||||
-rw-r--r-- | plugins/indentguide.lua (renamed from indentguide.lua) | 0 | ||||
-rw-r--r-- | plugins/language_fe.lua (renamed from language_fe.lua) | 0 | ||||
-rw-r--r-- | plugins/language_go.lua (renamed from language_go.lua) | 0 | ||||
-rw-r--r-- | plugins/language_jiyu.lua (renamed from language_jiyu.lua) | 0 | ||||
-rw-r--r-- | plugins/language_odin.lua (renamed from language_odin.lua) | 0 | ||||
-rw-r--r-- | plugins/language_php.lua (renamed from language_php.lua) | 0 | ||||
-rw-r--r-- | plugins/language_psql.lua (renamed from language_psql.lua) | 0 | ||||
-rw-r--r-- | plugins/language_rust.lua (renamed from language_rust.lua) | 0 | ||||
-rw-r--r-- | plugins/language_wren.lua (renamed from language_wren.lua) | 0 | ||||
-rw-r--r-- | plugins/macmodkeys.lua (renamed from macmodkeys.lua) | 0 | ||||
-rw-r--r-- | plugins/sort.lua (renamed from sort.lua) | 0 | ||||
-rw-r--r-- | plugins/spellcheck.lua (renamed from spellcheck.lua) | 0 | ||||
-rw-r--r-- | plugins/titleize.lua (renamed from titleize.lua) | 0 | ||||
-rw-r--r-- | plugins/togglesnakecamel.lua (renamed from togglesnakecamel.lua) | 0 |
19 files changed, 18 insertions, 18 deletions
@@ -9,23 +9,23 @@ otherwise the plugin file itself can be submitted.* Plugin | Description -------|----------------------------------------- -[`autowrap`](autowrap.lua?raw=1) | Automatically hardwraps lines when typing -[`bracketmatch`](bracketmatch.lua?raw=1) | [Underlines](https://user-images.githubusercontent.com/3920290/80132745-0c863f00-8594-11ea-8875-c455c6fd7eae.png) matching right-bracket of left-bracket under caret -[`eval`](eval.lua?raw=1) | Replaces selected Lua code with its evaluated result -[`gofmt`](gofmt.lua?raw=1) | Auto-formats the current go file, adds the missing imports and the missing return cases -[`indentguide`](indentguide.lua?raw=1) | Adds [indent guides](https://user-images.githubusercontent.com/3920290/79640716-f9860000-818a-11ea-9c3b-26d10dd0e0c0.png) -[`language_fe`](language_fe.lua?raw=1) | Syntax for the [fe](https://github.com/rxi/fe) programming language -[`language_go`](language_go.lua?raw=1) | Syntax for the [Go](https://golang.org/) programming language -[`language_jiyu`](language_jiyu.lua?raw=1) | Syntax for the [jiyu](https://github.com/machinamentum/jiyu) programming language -[`language_odin`](language_odin.lua?raw=1) | Syntax for the [Odin](https://github.com/odin-lang/Odin) programming language -[`language_php`](language_php.lua?raw=1) | Syntax for the [PHP](https://php.net) programming language -[`language_psql`](language_psql.lua?raw=1) | Syntax for the postgresql database access language -[`language_rust`](language_rust.lua?raw=1) | Syntax for the [Rust](https://rust-lang.org/) programming language -[`language_wren`](language_wren.lua?raw=1) | Syntax for the [Wren](http://wren.io/) programming language -[`macmodkeys`](macmodkeys.lua?raw=1) | Remaps mac modkeys `command/option` to `ctrl/alt` -[`sort`](sort.lua?raw=1) | Sorts selected lines alphabetically -[`spellcheck`](spellcheck.lua?raw=1) | [Underlines](https://user-images.githubusercontent.com/3920290/79923973-9caa7400-842e-11ea-85d4-7a196a91ca50.png) misspelt words +[`autowrap`](plugins/autowrap.lua?raw=1) | Automatically hardwraps lines when typing +[`bracketmatch`](plugins/bracketmatch.lua?raw=1) | [Underlines](https://user-images.githubusercontent.com/3920290/80132745-0c863f00-8594-11ea-8875-c455c6fd7eae.png) matching right-bracket of left-bracket under caret +[`eval`](plugins/eval.lua?raw=1) | Replaces selected Lua code with its evaluated result +[`gofmt`](plugins/gofmt.lua?raw=1) | Auto-formats the current go file, adds the missing imports and the missing return cases +[`indentguide`](plugins/indentguide.lua?raw=1) | Adds [indent guides](https://user-images.githubusercontent.com/3920290/79640716-f9860000-818a-11ea-9c3b-26d10dd0e0c0.png) +[`language_fe`](plugins/language_fe.lua?raw=1) | Syntax for the [fe](https://github.com/rxi/fe) programming language +[`language_go`](plugins/language_go.lua?raw=1) | Syntax for the [Go](https://golang.org/) programming language +[`language_jiyu`](plugins/language_jiyu.lua?raw=1) | Syntax for the [jiyu](https://github.com/machinamentum/jiyu) programming language +[`language_odin`](plugins/language_odin.lua?raw=1) | Syntax for the [Odin](https://github.com/odin-lang/Odin) programming language +[`language_php`](plugins/language_php.lua?raw=1) | Syntax for the [PHP](https://php.net) programming language +[`language_psql`](plugins/language_psql.lua?raw=1) | Syntax for the postgresql database access language +[`language_rust`](plugins/language_rust.lua?raw=1) | Syntax for the [Rust](https://rust-lang.org/) programming language +[`language_wren`](plugins/language_wren.lua?raw=1) | Syntax for the [Wren](http://wren.io/) programming language +[`macmodkeys`](plugins/macmodkeys.lua?raw=1) | Remaps mac modkeys `command/option` to `ctrl/alt` +[`sort`](plugins/sort.lua?raw=1) | Sorts selected lines alphabetically +[`spellcheck`](plugins/spellcheck.lua?raw=1) | [Underlines](https://user-images.githubusercontent.com/3920290/79923973-9caa7400-842e-11ea-85d4-7a196a91ca50.png) misspelt words [`theme16`](https://github.com/monolifed/theme16) | Theme manager with base16 themes -[`titleize`](titleize.lua?raw=1) | Titleizes selected string (`hello world` => `Hello World`) +[`titleize`](plugins/titleize.lua?raw=1) | Titleizes selected string (`hello world` => `Hello World`) [`todotreeview`](https://github.com/drmargarido/TodoTreeView) | Todo tree viewer for anotations in code like `TODO`, `BUG`, `FIX`, `IMPROVEMENT` -[`togglesnakecamel`](togglesnakecamel.lua?raw=1) | Toggles symbols between `snake_case` and `camelCase` +[`togglesnakecamel`](plugins/togglesnakecamel.lua?raw=1) | Toggles symbols between `snake_case` and `camelCase` diff --git a/autowrap.lua b/plugins/autowrap.lua index 85d4c24..85d4c24 100644 --- a/autowrap.lua +++ b/plugins/autowrap.lua diff --git a/bracketmatch.lua b/plugins/bracketmatch.lua index b05e8ab..b05e8ab 100644 --- a/bracketmatch.lua +++ b/plugins/bracketmatch.lua diff --git a/eval.lua b/plugins/eval.lua index 54e08ba..54e08ba 100644 --- a/eval.lua +++ b/plugins/eval.lua diff --git a/gofmt.lua b/plugins/gofmt.lua index 11c90b9..11c90b9 100644 --- a/gofmt.lua +++ b/plugins/gofmt.lua diff --git a/indentguide.lua b/plugins/indentguide.lua index 9d903b7..9d903b7 100644 --- a/indentguide.lua +++ b/plugins/indentguide.lua diff --git a/language_fe.lua b/plugins/language_fe.lua index f97e73b..f97e73b 100644 --- a/language_fe.lua +++ b/plugins/language_fe.lua diff --git a/language_go.lua b/plugins/language_go.lua index 488725f..488725f 100644 --- a/language_go.lua +++ b/plugins/language_go.lua diff --git a/language_jiyu.lua b/plugins/language_jiyu.lua index 1cf94dc..1cf94dc 100644 --- a/language_jiyu.lua +++ b/plugins/language_jiyu.lua diff --git a/language_odin.lua b/plugins/language_odin.lua index 6f393c8..6f393c8 100644 --- a/language_odin.lua +++ b/plugins/language_odin.lua diff --git a/language_php.lua b/plugins/language_php.lua index 55597d6..55597d6 100644 --- a/language_php.lua +++ b/plugins/language_php.lua diff --git a/language_psql.lua b/plugins/language_psql.lua index 7c6c4b7..7c6c4b7 100644 --- a/language_psql.lua +++ b/plugins/language_psql.lua diff --git a/language_rust.lua b/plugins/language_rust.lua index 321efc2..321efc2 100644 --- a/language_rust.lua +++ b/plugins/language_rust.lua diff --git a/language_wren.lua b/plugins/language_wren.lua index ccd53db..ccd53db 100644 --- a/language_wren.lua +++ b/plugins/language_wren.lua diff --git a/macmodkeys.lua b/plugins/macmodkeys.lua index 69028ab..69028ab 100644 --- a/macmodkeys.lua +++ b/plugins/macmodkeys.lua diff --git a/sort.lua b/plugins/sort.lua index e104043..e104043 100644 --- a/sort.lua +++ b/plugins/sort.lua diff --git a/spellcheck.lua b/plugins/spellcheck.lua index bb6f835..bb6f835 100644 --- a/spellcheck.lua +++ b/plugins/spellcheck.lua diff --git a/titleize.lua b/plugins/titleize.lua index 2e4b52a..2e4b52a 100644 --- a/titleize.lua +++ b/plugins/titleize.lua diff --git a/togglesnakecamel.lua b/plugins/togglesnakecamel.lua index 236c22e..236c22e 100644 --- a/togglesnakecamel.lua +++ b/plugins/togglesnakecamel.lua |