Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/plugins/autoclose/autoclose.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "1.0.0"
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0

local uutil = import("micro/util")
local utf8 = import("utf8")
Expand Down
2 changes: 1 addition & 1 deletion runtime/plugins/comment/comment.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "1.0.0"
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0

local util = import("micro/util")
local config = import("micro/config")
Expand Down
2 changes: 1 addition & 1 deletion runtime/plugins/diff/diff.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "1.0.0"
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0

local os = import("os")
local filepath = import("path/filepath")
Expand Down
2 changes: 1 addition & 1 deletion runtime/plugins/ftoptions/ftoptions.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "1.0.0"
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0

function onBufferOpen(b)
local ft = b:FileType()
Expand Down
2 changes: 1 addition & 1 deletion runtime/plugins/linter/linter.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "1.0.0"
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0

local micro = import("micro")
local runtime = import("runtime")
Expand Down
2 changes: 1 addition & 1 deletion runtime/plugins/literate/literate.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "1.0.0"
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0

local config = import("micro/config")

Expand Down
2 changes: 1 addition & 1 deletion runtime/plugins/status/status.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "1.0.0"
VERSION = "1.0.0" -- all built-in plugins fixed to 1.0.0

local micro = import("micro")
local buffer = import("micro/buffer")
Expand Down