Make micro use transparent theme, update plugins
This commit is contained in:
parent
97e5c3d781
commit
65fb156ff6
7 changed files with 78 additions and 31 deletions
|
@ -1,4 +1,4 @@
|
||||||
VERSION = "1.2.0"
|
VERSION = "1.2.1"
|
||||||
|
|
||||||
local micro = import("micro")
|
local micro = import("micro")
|
||||||
local shell = import("micro/shell")
|
local shell = import("micro/shell")
|
||||||
|
@ -38,36 +38,36 @@ local lock = false
|
||||||
local next = nil
|
local next = nil
|
||||||
|
|
||||||
function runAspell(buf, onExit, ...)
|
function runAspell(buf, onExit, ...)
|
||||||
local text = util.String(buf:Bytes())
|
local options = {"pipe", "--encoding=utf-8"}
|
||||||
|
|
||||||
-- Escape for aspell (it interprets lines that start
|
|
||||||
-- with % @ ^ ! etc.)
|
|
||||||
text = text:gsub("\n", "\n^"):gsub("^", "^")
|
|
||||||
-- Enable terse mode
|
|
||||||
text = "!\n" .. text
|
|
||||||
-- Escape for shell
|
|
||||||
text = "'" .. text:gsub("'", "'\\''") .. "'"
|
|
||||||
|
|
||||||
local options = ""
|
|
||||||
-- FIXME: we should support non-utf8 encodings with '--encoding'
|
|
||||||
if filterModes[buf:FileType()] then
|
if filterModes[buf:FileType()] then
|
||||||
options = options .. " --mode=" .. filterModes[buf:FileType()]
|
options[#options + 1] = "--mode=" .. filterModes[buf:FileType()]
|
||||||
end
|
end
|
||||||
if buf.Settings["aspell.lang"] ~= "" then
|
if buf.Settings["aspell.lang"] ~= "" then
|
||||||
options = options .. " --lang=" .. buf.Settings["aspell.lang"]
|
options[#options + 1] = "--lang=" .. buf.Settings["aspell.lang"]
|
||||||
end
|
end
|
||||||
if buf.Settings["aspell.dict"] ~= "" then
|
if buf.Settings["aspell.dict"] ~= "" then
|
||||||
options = options .. " --master=" .. buf.Settings["aspell.dict"]
|
options[#options + 1] = "--master=" .. buf.Settings["aspell.dict"]
|
||||||
end
|
end
|
||||||
if buf.Settings["aspell.sugmode"] ~= "" then
|
if buf.Settings["aspell.sugmode"] ~= "" then
|
||||||
options = options .. " --sug-mode=" .. buf.Settings["aspell.sugmode"]
|
options[#options + 1] = "--sug-mode=" .. buf.Settings["aspell.sugmode"]
|
||||||
end
|
end
|
||||||
if buf.Settings["aspell.args"] ~= "" then
|
for _, argument in ipairs(split(buf.Settings["aspell.args"], " ")) do
|
||||||
options = options .. " " .. buf.Settings["aspell.args"]
|
options[#options + 1] = argument
|
||||||
end
|
end
|
||||||
|
|
||||||
shell.JobStart("printf %s " .. text .. " | aspell pipe" .. options, nil,
|
local job = shell.JobSpawn("aspell", options, nil,
|
||||||
nil, onExit, buf, unpack(arg))
|
nil, onExit, buf, unpack(arg))
|
||||||
|
-- Enable terse mode
|
||||||
|
shell.JobSend(job, "!\n")
|
||||||
|
for i=0, buf:LinesNum() - 1 do
|
||||||
|
local line = util.String(buf:LineBytes(i))
|
||||||
|
-- Escape for aspell (it interprets lines that start
|
||||||
|
-- with % @ ^ ! etc.)
|
||||||
|
line = "^" .. line .. "\n"
|
||||||
|
|
||||||
|
shell.JobSend(job, line)
|
||||||
|
end
|
||||||
|
job.Stdin:Close()
|
||||||
end
|
end
|
||||||
|
|
||||||
function spellcheck(buf)
|
function spellcheck(buf)
|
||||||
|
@ -196,23 +196,23 @@ function addpersonal(bp, args)
|
||||||
local wordInBuf = util.String(buf:Substr(misspell.mstart, misspell.mend))
|
local wordInBuf = util.String(buf:Substr(misspell.mstart, misspell.mend))
|
||||||
if loc:GreaterEqual(misspell.mstart) and loc:LessEqual(misspell.mend)
|
if loc:GreaterEqual(misspell.mstart) and loc:LessEqual(misspell.mend)
|
||||||
and wordInBuf == misspell.word then
|
and wordInBuf == misspell.word then
|
||||||
local options = ""
|
local options = {"pipe", "--encoding=utf-8"}
|
||||||
if buf.Settings["aspell.lang"] ~= "" then
|
if buf.Settings["aspell.lang"] ~= "" then
|
||||||
options = options .. " --lang="
|
options[#options + 1] = "--lang=" .. buf.Settings["aspell.lang"]
|
||||||
.. buf.Settings["aspell.lang"]
|
|
||||||
end
|
end
|
||||||
if buf.Settings["aspell.dict"] ~= "" then
|
if buf.Settings["aspell.dict"] ~= "" then
|
||||||
options = options .. " --master="
|
options[#options + 1] = "--master=" .. buf.Settings["aspell.dict"]
|
||||||
.. buf.Settings["aspell.dict"]
|
|
||||||
end
|
end
|
||||||
if buf.Settings["aspell.args"] ~= "" then
|
for _, argument in ipairs(split(buf.Settings["aspell.args"], " ")) do
|
||||||
options = options .. " " .. buf.Settings["aspell.args"]
|
options[#options + 1] = argument
|
||||||
end
|
end
|
||||||
|
|
||||||
shell.ExecCommand("sh", "-c", "echo '*" .. misspell.word
|
local job = shell.JobSpawn("aspell", options, nil, nil, function ()
|
||||||
.. "\n#\n' | aspell pipe" .. options)
|
spellcheck(buf)
|
||||||
|
end)
|
||||||
|
shell.JobSend(job, "*" .. misspell.word .. "\n#\n")
|
||||||
|
job.Stdin:Close()
|
||||||
|
|
||||||
spellcheck(buf)
|
|
||||||
if args then
|
if args then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,7 +5,8 @@ of XML, HTML, TeX and Markdown. On C++, C and Perl only comments and string
|
||||||
literals will be checked.
|
literals will be checked.
|
||||||
|
|
||||||
You need to have Aspell installed and available in your PATH. It does not come
|
You need to have Aspell installed and available in your PATH. It does not come
|
||||||
with this plugin. This plugin also currently doesn't work on Windows.
|
with this plugin. If you are on Windows, you can install Aspell through
|
||||||
|
[MSYS2](https://www.msys2.org/).
|
||||||
|
|
||||||
## Options
|
## Options
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,13 @@
|
||||||
"Tags": ["spellchecking", "spelling", "aspell", "spellchecker"],
|
"Tags": ["spellchecking", "spelling", "aspell", "spellchecker"],
|
||||||
"Website": "https://github.com/priner/micro-aspell-plugin",
|
"Website": "https://github.com/priner/micro-aspell-plugin",
|
||||||
"Versions": [
|
"Versions": [
|
||||||
|
{
|
||||||
|
"Version": "1.2.1",
|
||||||
|
"Url": "https://github.com/priner/micro-aspell-plugin/archive/v1.2.1.zip",
|
||||||
|
"Require": {
|
||||||
|
"micro": ">=2.0.7"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"Version": "1.2.0",
|
"Version": "1.2.0",
|
||||||
"Url": "https://github.com/priner/micro-aspell-plugin/archive/v1.2.0.zip",
|
"Url": "https://github.com/priner/micro-aspell-plugin/archive/v1.2.0.zip",
|
||||||
|
|
7
etc/skel/.config/micro/plug/misspell/README.md
Normal file
7
etc/skel/.config/micro/plug/misspell/README.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Misspell Plugin for Micro
|
||||||
|
|
||||||
|
This repository holds the misspell plugin for micro.
|
||||||
|
|
||||||
|
Install with `> plugin install misspell`,
|
||||||
|
https://github.com/client9/misspell needs to be in your PATH.
|
||||||
|
This plugin will lint text for spelling mistakes.
|
9
etc/skel/.config/micro/plug/misspell/misspell.lua
Normal file
9
etc/skel/.config/micro/plug/misspell/misspell.lua
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
VERSION = "0.2.0"
|
||||||
|
|
||||||
|
local config = import("micro/config")
|
||||||
|
|
||||||
|
function init()
|
||||||
|
-- uses the default linter plugin
|
||||||
|
-- matches any filetype
|
||||||
|
linter.makeLinter("misspell", "", "misspell", {"%f"}, "%f:%l:%c: %m", {}, false, true)
|
||||||
|
end
|
22
etc/skel/.config/micro/plug/misspell/repo.json
Normal file
22
etc/skel/.config/micro/plug/misspell/repo.json
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
[{
|
||||||
|
"Name": "misspell",
|
||||||
|
"Description": "plugin that corrects commonly misspelled words",
|
||||||
|
"Tags": ["spell", "check", "misspell"],
|
||||||
|
"Website": "https://github.com/onodera-punpun/micro-misspell-plugin",
|
||||||
|
"Versions": [
|
||||||
|
{
|
||||||
|
"Version": "0.2.0",
|
||||||
|
"Url": "https://github.com/micro-editor/updated-plugins/releases/download/v1.0.0/misspell-0.2.0.zip",
|
||||||
|
"Require": {
|
||||||
|
"micro": ">=2.0.0-1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Version": "0.1.0",
|
||||||
|
"Url": "https://github.com/onodera-punpun/micro-misspell-plugin/archive/0.1.0.zip",
|
||||||
|
"Require": {
|
||||||
|
"micro": ">=1.0.3"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}]
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
"autosu": true,
|
"autosu": true,
|
||||||
|
"colorscheme": "geany",
|
||||||
"mkparents": true
|
"mkparents": true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue