From 624e7a7f8faf997749d02f86803ff8853f347452 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Tue, 29 Nov 2016 02:03:50 +0900 Subject: [PATCH] Remove some excess comment --- micro/init.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/micro/init.lua b/micro/init.lua index 5605bfe..76b208b 100644 --- a/micro/init.lua +++ b/micro/init.lua @@ -5,7 +5,6 @@ local function setIndentation(properties, view) local tab_width_str = properties["tab_width"] local indent_style = properties["indent_style"] - -- TODO: Fix logic to decide indent_size local indent_size = tonumber(indent_size_str, 10) local tab_width = tonumber(tab_width_str, 10) if indent_size_str == "tab" then @@ -58,7 +57,6 @@ local function applyProperties(properties, view) end function onEditorConfigExit(output) - -- messenger:Message(output) -- FIXME: messege when editorconfig exit with error local properties = {} -- TODO: Which is better? output:gmatch(), string.gmatch(output, ...) @@ -84,7 +82,6 @@ end function onViewOpen(view) getApplyProperties(view) - -- messenger:Message(view.Buf.AbsPath) end function onSave(view)