Open KayleMaster opened 1 year ago
please see https://github.com/CppCXY/EmmyLuaCodeStyle/blob/master/lua.template.editorconfig
the names of many options have changed, and many new options have been added.
your question is set align_array_table=false
@CppCXY I just tried the suggest option but behavior wise nothing changed. Still behaves as @KayleMaster described above.
Aight. So the situation is that I'm providing the arguments directly through nvim-lspconfig
rather that .editorconfig
. It can't handle the value passed als lua bool. You will have to provide "false"
like so (if that correlates to your issue):
Lua = {
. . .
format = {
enable = true,
defaultConfig = {
indent_style = "space",
indent_size = "4",
quote_style = "double",
align_array_table = "false",
},
},
},
Aight. So the situation is that I'm providing the arguments directly through
nvim-lspconfig
rather that.editorconfig
. It can't handle the value passed als lua bool. You will have to provide"false"
like so (if that correlates to your issue):Lua = { . . . format = { enable = true, defaultConfig = { indent_style = "space", indent_size = "4", quote_style = "double", align_array_table = "false", }, }, },
I don't have neovim., so I tested it on vscode and it's basically right. maybe you already have a .editorconfig file in your workspace, so it won't use the default configuration.
How are you using the lua-language-server?
Visual Studio Code Extension (sumneko.lua)
Which OS are you using?
Windows
What is the issue affecting?
Formatting
Expected Behaviour
Actual Behaviour
Reproduction steps
[*] indent_style = space indent_size = 4 charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true
[*.lua] keep_one_space_between_table_and_bracket = false align_continuous_assign_statement = false align_continuous_rect_table_field = false continuation_indent = 0 max_line_length = 200