選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

24 行
580 B

  1. -- ec = require("editorconfig_core")
  2. function onViewOpen(view)
  3. -- Is this portable? (work on windows?)
  4. local pwd = os.getenv("PWD")
  5. local filename = view.Buf.Path
  6. -- prop, names = ec.parse(filepath)
  7. local fullpath = JoinPaths(pwd, filename)
  8. local out = getProperties(fullpath)
  9. messenger:Message("view.Buf.Path: " .. out)
  10. end
  11. local function getProperties(fullpath)
  12. local file = io.popen("echo fullpath: " .. fullpath, "r")
  13. local output = file:read("*all")
  14. file:close()
  15. return output
  16. end
  17. function onSave(view)
  18. messenger:Message("Saved!")
  19. end