diff options
| author | Francesco Abbate <francesco.bbt@gmail.com> | 2021-05-05 22:38:29 +0200 |
|---|---|---|
| committer | Francesco Abbate <francesco.bbt@gmail.com> | 2021-05-05 22:38:29 +0200 |
| commit | 5cef643e02a3d5e56f264bb9ee614ffd4c726ae5 (patch) | |
| tree | 6f584c613d3ad0a9aefa9d85f8d63f4c35ac71df /data/plugins | |
| parent | 135dfa6f038786c191e3a21e1dadf776884f7a14 (diff) | |
| download | pragtical-5cef643e02a3d5e56f264bb9ee614ffd4c726ae5.tar.gz pragtical-5cef643e02a3d5e56f264bb9ee614ffd4c726ae5.zip | |
Introduce new plugin versioning tag mod-version
New plugins should use the version tag:
-- mod-version: 1
The old version tag "-- lite-xl 1.16" will be considerer equivalent
to mod-version 1.
Diffstat (limited to 'data/plugins')
| -rw-r--r-- | data/plugins/autocomplete.lua | 2 | ||||
| -rw-r--r-- | data/plugins/autoreload.lua | 2 | ||||
| -rw-r--r-- | data/plugins/detectindent.lua | 2 | ||||
| -rw-r--r-- | data/plugins/language_c.lua | 2 | ||||
| -rw-r--r-- | data/plugins/language_css.lua | 2 | ||||
| -rw-r--r-- | data/plugins/language_html.lua | 2 | ||||
| -rw-r--r-- | data/plugins/language_js.lua | 2 | ||||
| -rw-r--r-- | data/plugins/language_lua.lua | 2 | ||||
| -rw-r--r-- | data/plugins/language_md.lua | 2 | ||||
| -rw-r--r-- | data/plugins/language_python.lua | 2 | ||||
| -rw-r--r-- | data/plugins/language_xml.lua | 2 | ||||
| -rw-r--r-- | data/plugins/macro.lua | 2 | ||||
| -rw-r--r-- | data/plugins/projectsearch.lua | 2 | ||||
| -rw-r--r-- | data/plugins/quote.lua | 2 | ||||
| -rw-r--r-- | data/plugins/reflow.lua | 2 | ||||
| -rw-r--r-- | data/plugins/tabularize.lua | 2 | ||||
| -rw-r--r-- | data/plugins/toolbarview.lua | 2 | ||||
| -rw-r--r-- | data/plugins/treeview.lua | 2 | ||||
| -rw-r--r-- | data/plugins/trimwhitespace.lua | 2 | ||||
| -rw-r--r-- | data/plugins/workspace.lua | 2 |
20 files changed, 20 insertions, 20 deletions
diff --git a/data/plugins/autocomplete.lua b/data/plugins/autocomplete.lua index c0a3d36a..c76eed02 100644 --- a/data/plugins/autocomplete.lua +++ b/data/plugins/autocomplete.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local common = require "core.common" local config = require "core.config" diff --git a/data/plugins/autoreload.lua b/data/plugins/autoreload.lua index cbef8a21..f84d87d6 100644 --- a/data/plugins/autoreload.lua +++ b/data/plugins/autoreload.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local config = require "core.config" local Doc = require "core.doc" diff --git a/data/plugins/detectindent.lua b/data/plugins/detectindent.lua index 9ee171e9..681dce26 100644 --- a/data/plugins/detectindent.lua +++ b/data/plugins/detectindent.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local command = require "core.command" local common = require "core.common" diff --git a/data/plugins/language_c.lua b/data/plugins/language_c.lua index 9bb074bf..1445d067 100644 --- a/data/plugins/language_c.lua +++ b/data/plugins/language_c.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local syntax = require "core.syntax" syntax.add { diff --git a/data/plugins/language_css.lua b/data/plugins/language_css.lua index acd01398..08a256f9 100644 --- a/data/plugins/language_css.lua +++ b/data/plugins/language_css.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local syntax = require "core.syntax" syntax.add { diff --git a/data/plugins/language_html.lua b/data/plugins/language_html.lua index 549a2b12..c45b43a3 100644 --- a/data/plugins/language_html.lua +++ b/data/plugins/language_html.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local syntax = require "core.syntax" syntax.add { diff --git a/data/plugins/language_js.lua b/data/plugins/language_js.lua index 9f877ef0..a258bb3c 100644 --- a/data/plugins/language_js.lua +++ b/data/plugins/language_js.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local syntax = require "core.syntax" syntax.add { diff --git a/data/plugins/language_lua.lua b/data/plugins/language_lua.lua index 64b7847f..168ea0ce 100644 --- a/data/plugins/language_lua.lua +++ b/data/plugins/language_lua.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local syntax = require "core.syntax" syntax.add { diff --git a/data/plugins/language_md.lua b/data/plugins/language_md.lua index 0998c11e..ab2a7d8b 100644 --- a/data/plugins/language_md.lua +++ b/data/plugins/language_md.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local syntax = require "core.syntax" syntax.add { diff --git a/data/plugins/language_python.lua b/data/plugins/language_python.lua index b9c07e4e..849bafc1 100644 --- a/data/plugins/language_python.lua +++ b/data/plugins/language_python.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local syntax = require "core.syntax" syntax.add { diff --git a/data/plugins/language_xml.lua b/data/plugins/language_xml.lua index b87fcc56..d97fa9a8 100644 --- a/data/plugins/language_xml.lua +++ b/data/plugins/language_xml.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local syntax = require "core.syntax" syntax.add { diff --git a/data/plugins/macro.lua b/data/plugins/macro.lua index c8873102..15d8a75e 100644 --- a/data/plugins/macro.lua +++ b/data/plugins/macro.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local command = require "core.command" local keymap = require "core.keymap" diff --git a/data/plugins/projectsearch.lua b/data/plugins/projectsearch.lua index c4499339..4c1fca6d 100644 --- a/data/plugins/projectsearch.lua +++ b/data/plugins/projectsearch.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local common = require "core.common" local keymap = require "core.keymap" diff --git a/data/plugins/quote.lua b/data/plugins/quote.lua index bca0797b..85a5874c 100644 --- a/data/plugins/quote.lua +++ b/data/plugins/quote.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local command = require "core.command" local keymap = require "core.keymap" diff --git a/data/plugins/reflow.lua b/data/plugins/reflow.lua index 621c361c..f0051c12 100644 --- a/data/plugins/reflow.lua +++ b/data/plugins/reflow.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local config = require "core.config" local command = require "core.command" diff --git a/data/plugins/tabularize.lua b/data/plugins/tabularize.lua index 31821525..2fa06d69 100644 --- a/data/plugins/tabularize.lua +++ b/data/plugins/tabularize.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local command = require "core.command" local translate = require "core.doc.translate" diff --git a/data/plugins/toolbarview.lua b/data/plugins/toolbarview.lua index 2edfa8bc..93102df2 100644 --- a/data/plugins/toolbarview.lua +++ b/data/plugins/toolbarview.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local common = require "core.common" local command = require "core.command" diff --git a/data/plugins/treeview.lua b/data/plugins/treeview.lua index 44422b77..73f4708c 100644 --- a/data/plugins/treeview.lua +++ b/data/plugins/treeview.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local common = require "core.common" local command = require "core.command" diff --git a/data/plugins/trimwhitespace.lua b/data/plugins/trimwhitespace.lua index 5a43653b..a6d3d140 100644 --- a/data/plugins/trimwhitespace.lua +++ b/data/plugins/trimwhitespace.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local command = require "core.command" local Doc = require "core.doc" diff --git a/data/plugins/workspace.lua b/data/plugins/workspace.lua index c24358c2..25c7f672 100644 --- a/data/plugins/workspace.lua +++ b/data/plugins/workspace.lua @@ -1,4 +1,4 @@ --- lite-xl 1.16 +-- mod-version:1 -- lite-xl 1.16 local core = require "core" local common = require "core.common" local DocView = require "core.docview" |
