aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorFrancesco Abbate <francesco.bbt@gmail.com>2021-04-09 23:02:48 +0200
committerFrancesco Abbate <francesco.bbt@gmail.com>2021-04-09 23:02:48 +0200
commit2fefdae0bb729edb29c6b90e89d34a9e664fbf14 (patch)
tree5ca6812d346e88c265caee367b8de12a9a3ea34a /plugins
parent5af19bb2c7ed14ba1894095fc1469e0078302d9e (diff)
downloadlite-xl-plugins-2fefdae0bb729edb29c6b90e89d34a9e664fbf14.tar.gz
lite-xl-plugins-2fefdae0bb729edb29c6b90e89d34a9e664fbf14.zip
Completed verification and tagging of plugins
Diffstat (limited to 'plugins')
-rw-r--r--plugins/openfilelocation.lua1
-rw-r--r--plugins/openselected.lua1
-rw-r--r--plugins/rainbowparen.lua1
-rw-r--r--plugins/scale.lua1
-rw-r--r--plugins/scalestatus.lua1
-rw-r--r--plugins/selectionhighlight.lua1
-rw-r--r--plugins/sort.lua1
-rw-r--r--plugins/spellcheck.lua1
-rw-r--r--plugins/tabnumbers.lua1
-rw-r--r--plugins/titleize.lua1
-rw-r--r--plugins/togglesnakecamel.lua1
-rw-r--r--plugins/unboundedscroll.lua1
12 files changed, 12 insertions, 0 deletions
diff --git a/plugins/openfilelocation.lua b/plugins/openfilelocation.lua
index 58c3d6f..0cf26f1 100644
--- a/plugins/openfilelocation.lua
+++ b/plugins/openfilelocation.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local core = require "core"
local command = require "core.command"
local config = require "core.config"
diff --git a/plugins/openselected.lua b/plugins/openselected.lua
index 65fdeb8..f7dc917 100644
--- a/plugins/openselected.lua
+++ b/plugins/openselected.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local core = require "core"
local command = require "core.command"
local keymap = require "core.keymap"
diff --git a/plugins/rainbowparen.lua b/plugins/rainbowparen.lua
index b2689f0..6154b34 100644
--- a/plugins/rainbowparen.lua
+++ b/plugins/rainbowparen.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local tokenizer = require "core.tokenizer"
local style = require "core.style"
local common = require "core.common"
diff --git a/plugins/scale.lua b/plugins/scale.lua
index 9d9ea73..e93c3c0 100644
--- a/plugins/scale.lua
+++ b/plugins/scale.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local core = require "core"
local common = require "core.common"
local command = require "core.command"
diff --git a/plugins/scalestatus.lua b/plugins/scalestatus.lua
index 03216b5..248c8a4 100644
--- a/plugins/scalestatus.lua
+++ b/plugins/scalestatus.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
--[[
scalestatus.lua
displays current scale (zoom) in status view
diff --git a/plugins/selectionhighlight.lua b/plugins/selectionhighlight.lua
index 93dfe17..adad725 100644
--- a/plugins/selectionhighlight.lua
+++ b/plugins/selectionhighlight.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local style = require "core.style"
local DocView = require "core.docview"
diff --git a/plugins/sort.lua b/plugins/sort.lua
index 2e865ab..6912a5a 100644
--- a/plugins/sort.lua
+++ b/plugins/sort.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local core = require "core"
local command = require "core.command"
local translate = require "core.doc.translate"
diff --git a/plugins/spellcheck.lua b/plugins/spellcheck.lua
index 1f29792..eedf318 100644
--- a/plugins/spellcheck.lua
+++ b/plugins/spellcheck.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local core = require "core"
local style = require "core.style"
local config = require "core.config"
diff --git a/plugins/tabnumbers.lua b/plugins/tabnumbers.lua
index deabbcd..29c3f8c 100644
--- a/plugins/tabnumbers.lua
+++ b/plugins/tabnumbers.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local common = require "core.common"
local core = require "core"
local style = require "core.style"
diff --git a/plugins/titleize.lua b/plugins/titleize.lua
index 2e4b52a..a9ea7a5 100644
--- a/plugins/titleize.lua
+++ b/plugins/titleize.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local core = require "core"
local command = require "core.command"
diff --git a/plugins/togglesnakecamel.lua b/plugins/togglesnakecamel.lua
index 236c22e..994ffd0 100644
--- a/plugins/togglesnakecamel.lua
+++ b/plugins/togglesnakecamel.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local core = require "core"
local command = require "core.command"
local keymap = require "core.keymap"
diff --git a/plugins/unboundedscroll.lua b/plugins/unboundedscroll.lua
index c4cc7bb..4429b61 100644
--- a/plugins/unboundedscroll.lua
+++ b/plugins/unboundedscroll.lua
@@ -1,3 +1,4 @@
+-- lite-xl 1.16
local DocView = require "core.docview"
function DocView.clamp_scroll_position()