Procházet zdrojové kódy

Fix micro/init.lua

Local functions must be defined before used (not for non-local functions).
pull/15/head
10sr před 8 roky
rodič
revize
437221f09f
1 změnil soubory, kde provedl 8 přidání a 7 odebrání
  1. +8
    -7
      micro/init.lua

+ 8
- 7
micro/init.lua Zobrazit soubor

@@ -1,21 +1,22 @@
-- ec = require("editorconfig_core")

local function GetProperties(fullpath)
local file = io.popen("echo fullpath: " .. fullpath, "r")
local output = file:read("*all")
file:close()
return output
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 out = getProperties(fullpath)
local out = GetProperties(fullpath)
messenger:Message("view.Buf.Path: " .. out)
end

local function getProperties(fullpath)
local file = io.popen("echo fullpath: " .. fullpath, "r")
local output = file:read("*all")
file:close()
return output
end


function onSave(view)


Načítá se…
Zrušit
Uložit