소스 검색

Fix editorconfig error

pull/15/head
10sr 8 년 전
부모
커밋
e1bcfb8983
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +4
    -4
      micro/init.lua

+ 4
- 4
micro/init.lua 파일 보기

@@ -57,13 +57,13 @@ local function applyProperties(properties, view)
end

function onEditorConfigExit(output)
-- FIXME: messege when editorconfig exit with error
local properties = {}
-- TODO: Which is better? output:gmatch(), string.gmatch(output, ...)
for line in output:gmatch('([^\n]+)') do
-- TODO: Fix regex
-- TODO: Throw error for invalid output
local key, value = line:match('([^=]*)=(.*)')
if key == nil or value == nil then
messenger:Message("Failed to parse editorconfig output: " .. output)
return
end
key = key:gsub('^%s(.-)%s*$', '%1')
value = value:gsub('^%s(.-)%s*$', '%1')
properties[key] = value


불러오는 중...
취소
저장