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
Checking the cppman page for certain keywords will result in a function, such as the page for an int, while other keywords will have their own pages, such as a double.
Steps to reproduce:
cppman double
cppman int
The text was updated successfully, but these errors were encountered:
This was because cppman will find the first match it encountered. The int keyword does not have a page matching the keyword, so the closest page was returned. I've modify the logic of query in the latest commit, now if a keyword results in multiple matches, a menu will be presented for selection, for example:
Checking the cppman page for certain keywords will result in a function, such as the page for an int, while other keywords will have their own pages, such as a double.
Steps to reproduce:
The text was updated successfully, but these errors were encountered: