We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Command Line
Windows
Other
I expect running /path/to/luals/server/bin/lua-language-server.exe --doc="path" --doc_out_path="." output in current directory
/path/to/luals/server/bin/lua-language-server.exe --doc="path" --doc_out_path="."
See wiki: https://luals.github.io/wiki/usage/#--doc_out_path (note the example is using wrong argument --doc instead of --doc_out_path on wiki)
--doc
--doc_out_path
Output is save in /path/to/luals/server/log instead of doc_out_path
/path/to/luals/server/log
already explained
The problem is in the following file
lua-language-server/script/core/command/exportDocument.lua
Line 10 in e930179
local outputPath = args[1] and furi.decode(args[1]) or LOGPATH
LOGPATH seems wrong
I fix my problem by using --logpath instead of --log_out_path /path/to/luals/server/bin/lua-language-server.exe --doc="path" --logpath="."
--logpath
--log_out_path
/path/to/luals/server/bin/lua-language-server.exe --doc="path" --logpath="."
No response
The text was updated successfully, but these errors were encountered:
This is fixed in last release with #2526
Sorry, something went wrong.
No branches or pull requests
How are you using the lua-language-server?
Command Line
Which OS are you using?
Windows
What is the issue affecting?
Other
Expected Behaviour
I expect running
/path/to/luals/server/bin/lua-language-server.exe --doc="path" --doc_out_path="."
output in current directorySee wiki: https://luals.github.io/wiki/usage/#--doc_out_path (note the example is using wrong argument
--doc
instead of--doc_out_path
on wiki)Actual Behaviour
Output is save in
/path/to/luals/server/log
instead of doc_out_pathReproduction steps
already explained
Additional Notes
The problem is in the following file
lua-language-server/script/core/command/exportDocument.lua
Line 10 in e930179
LOGPATH seems wrong
I fix my problem by using
--logpath
instead of--log_out_path
/path/to/luals/server/bin/lua-language-server.exe --doc="path" --logpath="."
Log File
No response
The text was updated successfully, but these errors were encountered: