You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it's better to make the filename in English only, but I don't know how to do it when I am using Leetcode-cn. Can the extension generate a filename like 673FindNumberOfLIS.cpp? Adding the question id and class name together.
🐛 Bug Report
This is the default setting of filename.
"filename": "${id}.${kebab-case-name}.${ext}"
It will cause some problems because of the dot
.
betweenid
andkebab-case-name
.Thus, I think it's better to remove
.
in default setting."filename": "${id}${kebab-case-name}.${ext}"
The text was updated successfully, but these errors were encountered: