micro/runtime/plugins/ftoptions/ftoptions.lua
2017-10-11 17:02:37 +02:00

23 lines
466 B
Lua

if GetOption("ftoptions") == nil then
AddOption("ftoptions", true)
end
function onViewOpen(view)
if not GetOption("ftoptions") then
return
end
local ft = view.Buf.Settings["filetype"]
if ft == "go" or
ft == "makefile" then
SetOption("tabstospaces", "off")
elseif ft == "fish" or
ft == "python" or
ft == "python2" or
ft == "python3" or
ft == "yaml" or
SetOption("tabstospaces", "on")
end
end