Lua version 5.4 #3197
-
What defines which lua version will be used by the computer? In my case, version 5.1 is used but I would like to use version 5.4, but I don't know if the version will be the same in all editors, which makes writing plugins a little difficult. Will the version be 5.1 for all plugins? You can see the lua version as follows: -- ~/.config/micro/init.lua
local micro = import('micro')
local config = import('micro/config')
function init()
config.MakeCommand('lv', function()
micro.InfoBar():Message(_VERSION)
end, config.NoComplete)
end How could I use version 5.4? |
Beta Was this translation helpful? Give feedback.
Answered by
Andriamanitra
Mar 20, 2024
Replies: 1 comment 1 reply
-
The gopher-lua package micro uses only supports Lua 5.1. As far as I know there is no way to make micro use any other Lua version. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
taconi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The gopher-lua package micro uses only supports Lua 5.1. As far as I know there is no way to make micro use any other Lua version.