micro/runtime/plugins/ftoptions/ftoptions.lua

18 lines
388 B
Lua
Raw Permalink Normal View History

2020-02-02 04:54:38 +00:00
VERSION = "1.0.0"
function onBufferOpen(b)
local ft = b:FileType()
2017-10-11 15:02:37 +00:00
if ft == "go" or
ft == "makefile" then
b:SetOption("tabstospaces", "off")
2017-10-11 15:02:37 +00:00
elseif ft == "fish" or
2017-10-17 04:03:57 +00:00
ft == "python" or
ft == "python2" or
ft == "python3" or
ft == "yaml" or
ft == "nim" then
b:SetOption("tabstospaces", "on")
end
end