From be010b0ed273607d3f3848498cae88817487f964 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Tue, 15 Nov 2016 02:04:36 +0900 Subject: [PATCH] Add some comments --- micro/init.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/micro/init.lua b/micro/init.lua index 205a50a..7826895 100644 --- a/micro/init.lua +++ b/micro/init.lua @@ -60,7 +60,14 @@ function onViewOpen(view) -- SetLocalOption("tabsize", 4, view) -- SetLocalOption("tabstospaces", "on", view) setIndentation(properties, view) - -- setCodingSystem(propertieps, 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)