Skip to content

Commit 44ca4aa

Browse files
author
usfbih8u
committed
chore(runtime/plugins): document that all built-in plugins use the fixed version 1.0.0
As of commit 4c47a27, the version of the built-in plugin is not displayed or used in any way. Rather than removing it, keep it in the code and document that it should remain at version `1.0.0`. This way, the information remains available to contributors and users.
1 parent 4c47a27 commit 44ca4aa

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

runtime/plugins/autoclose/autoclose.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.0.0"
1+
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0
22

33
local uutil = import("micro/util")
44
local utf8 = import("utf8")

runtime/plugins/comment/comment.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.0.0"
1+
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0
22

33
local util = import("micro/util")
44
local config = import("micro/config")

runtime/plugins/diff/diff.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.0.0"
1+
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0
22

33
local os = import("os")
44
local filepath = import("path/filepath")

runtime/plugins/ftoptions/ftoptions.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.0.0"
1+
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0
22

33
function onBufferOpen(b)
44
local ft = b:FileType()

runtime/plugins/linter/linter.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.0.0"
1+
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0
22

33
local micro = import("micro")
44
local runtime = import("runtime")

runtime/plugins/literate/literate.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.0.0"
1+
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0
22

33
local config = import("micro/config")
44

runtime/plugins/status/status.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.0.0"
1+
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0
22

33
local micro = import("micro")
44
local buffer = import("micro/buffer")

0 commit comments

Comments
 (0)