mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 09:49:12 +08:00
84ee96c64f
The `string.gsub()` function in Lua always uses Lua patterns (which are similar to regular expressions). Cmder's custom prompt wants to perform simple plain text find/replace operations on strings. `string.gsub()` is the right Lua function for that, but since it always uses Lua patterns it's necessary to apply escaping to the input strings otherwise they can get misinterpreted and cause runtime errors. For example, if the current working directory name contains a percent sign, such as literally "My%20Home". This change fixes that. It introduces a helper function `gsub_plain()` which behaves like `string.gsub()` but applies appropriate escaping to convert the plain text input strings into the corresponding Lua patterns so that it can achieve plain text find/replace operations. It also introduces separate helper functions for escaping the `find` and `replace` parameters for `string.gsub()`, since they have different escaping rules. |
||
---|---|---|
.. | ||
bin | ||
lib | ||
psmodules | ||
clink_settings.default | ||
clink.lua | ||
cmder_exinit | ||
cmder_prompt_config.lua.default | ||
cmder.sh | ||
ConEmu.xml.default | ||
git-prompt.sh | ||
init.bat | ||
profile.ps1 | ||
Readme.md | ||
sources.json | ||
user_aliases.cmd.default | ||
user_profile.cmd.default | ||
user_profile.ps1.default | ||
user_profile.sh.default |
Vendor
Third parties software & init script.