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
When I use the dropdown menu, it enters ^C++$ that produces the error ^C++$ docsets not installed so vector not searched.
^C++$
^C++$ docsets not installed so vector not searched
This error does not appear when searching in the CMake docset for example.
I can workaround by patching :
$ git diff diff --git a/bin/dasht-server-http b/bin/dasht-server-http index 90211f1..5b4853b 100755 --- a/bin/dasht-server-http +++ b/bin/dasht-server-http @@ -181,7 +181,7 @@ cat <<HEADER <label>in docsets <select name="docsets"> <option value="" selected>matched $1 out of $3</option> - $(echo "$docsets_menu" | awk -v were_any_ignored=$2 '{ + $(echo "$docsets_menu" | sed 's/\+/\\+/g' | awk -v were_any_ignored=$2 '{ value = "^" $2 "$" label = were_any_ignored && $1 ? "((( " $2 " )))" : $2 print "<option value=\"" value "\">" label "</option>"
The text was updated successfully, but these errors were encountered:
GH-49: dasht-server: escape C++ docset as ^C\+\+$'
95a02b7
Thanks for reporting this bug. 👍 It's fixed now in commit 1170855.
Sorry, something went wrong.
GH-49: dasht-server: escape C++ docset as ^C\+\+$
1170855
sunaku
No branches or pull requests
When I use the dropdown menu, it enters
^C++$
that produces the error^C++$ docsets not installed so vector not searched
.This error does not appear when searching in the CMake docset for example.
I can workaround by patching :
The text was updated successfully, but these errors were encountered: