|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- -- ec = require("editorconfig_core")
-
- local function getProperties(fullpath)
- -- TODO: Avoid command injection vulnerability
- -- For example, following command will create file b.txt
- -- $ micro "a.txt'; touch 'b.txt"
- local file = io.popen("editorconfig '" .. fullpath .. "'", "r")
- local output = file:read("*all")
- file:close()
-
- local properties = {}
- -- TODO: Which is better? output:gmatch(), string.gmatch(output, ...)
- for line in output:gmatch('([^\n]+)') do
- -- TODO: Fix regex
- local key, value = line:match('([^=]*)=(.*)')
- key = key:gsub('^%s(.-)%s*$', '%1')
- value = value:gsub('^%s(.-)%s*$', '%1')
- -- TODO: Throw error when key is empty string
- properties[key] = value
- end
-
- return properties
- end
-
- local function setIndentation(properties, view)
- local indent_size_str = properties["indent_size"]
- local tab_width_str = properties["tab_width"]
- local indent_style = properties["indent_style"]
-
- local indent_size = tonumber(indent_size_str, 10)
- if indent_size ~= nil then
- messenger:Message("set tabsize to " .. indent_size_str)
- SetLocalOption("tabsize", indent_size, view)
- end
-
- if indent_style == "space" then
- -- messenger:Message("indent_style to space")
- SetLocalOption("tabstospaces", "on", view)
- elseif indent_style == "tab" then
- -- messenger:Message("indent_style to tab")
- SetLocalOption("tabstospaces", "off", view)
- else
- -- messenger:Message("unknown indent_style")
- end
- end
-
- function onViewOpen(view)
- -- Is this portable? (work on windows?)
- local pwd = os.getenv("PWD")
- local filename = view.Buf.Path
- -- prop, names = ec.parse(filepath)
- local fullpath = JoinPaths(pwd, filename)
- local properties = getProperties(fullpath)
- if properties["indent_style"] == nil then
- messenger:Message("edconf: nil")
- else
- messenger:Message("edconf: " .. properties["indent_style"])
- end
-
- -- SetLocalOption("tabsize", 4, view)
- -- SetLocalOption("tabstospaces", "on", view)
- setIndentation(properties, view)
- -- Currently micro does not support changing coding-systems
- -- (Always use utf-8 with LF?)
- -- setCodingSystem(properties, view)
- -- `ruler' is not what we want!
- -- setMaxLineLength(properties, view)
- -- setTrimTrailingWhitespace(properties, view)
- -- We have eofnewline! Use this!
- -- setInsertFinalNewline(properties, view)
- end
-
- function onSave(view)
- messenger:Message("Saved!")
- end
-
- -- function getindentstyle()
|