mirror of
https://github.com/oh-my-fish/theme-bobthefish.git
synced 2024-10-27 20:34:23 +00:00
escape project_root_dir before using in regex
This commit is contained in:
parent
dbe3009b02
commit
46a89abb99
@ -231,7 +231,8 @@ function __bobthefish_project_pwd -S -a project_root_dir -a real_pwd -d 'Print t
|
||||
set -q theme_project_dir_length
|
||||
or set -l theme_project_dir_length 0
|
||||
|
||||
set -l project_dir (string replace -r '^'"$project_root_dir"'($|/)' '' $real_pwd)
|
||||
set -l project_root_dir_escaped (string escape --style=regex $project_root_dir)
|
||||
set -l project_dir (string replace -r '^'"$project_root_dir_escaped"'($|/)' '' $real_pwd)
|
||||
|
||||
if [ $theme_project_dir_length -eq 0 ]
|
||||
echo -n $project_dir
|
||||
|
Loading…
Reference in New Issue
Block a user