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
set_configvar("TEST", "$(projectdir)")
会展开成
#define TEST "C:\...\project"
在给字符串自动加引号时对\等字符的转义没有处理,而要正确处理转义就必须在on_load里面进行,非常麻烦;或者使用STRINGIFY宏和quote=false选项来进行,也很麻烦
\
set_configvar("TEST", "$(projectdir)", {escape = true})
在加引号的同时处理转义问题,默认不处理的行为不动
The text was updated successfully, but these errors were encountered:
加了 7dc1142
Sorry, something went wrong.
No branches or pull requests
你在什么场景下需要该功能?
会展开成
在给字符串自动加引号时对
\
等字符的转义没有处理,而要正确处理转义就必须在on_load里面进行,非常麻烦;或者使用STRINGIFY宏和quote=false选项来进行,也很麻烦描述可能的解决方案
在加引号的同时处理转义问题,默认不处理的行为不动
The text was updated successfully, but these errors were encountered: