This is a request for API documentation, but specifically for the developer hub itself.
My browser allows me to configure search engines to search different search engines by typing a prefix character. I have configured one to search the developer hub, which worked fine until today.
Not that I know of. On the other hand, I have a third-party website that can do it:
https://robloxapi.github.io/ref/?q=%s&devhub=1
Normally, the site will list results matching the query. From there, each result has a link to the corresponding DevHub page. With the devhub=1 parameter, the site will automatically redirect to the DevHub page of the first result. For example:
https://robloxapi.github.io/ref/?q=ffc&devhub=1
The query “ffc” matches “FindFirstChild” first, so it redirects to here:
I’ve unmarked the thread as solved because although your search is excellent for objects, it does not work with roblox types (CFrame, Vector3, UDim2).
I’ve improved searching a bit. In general, data type elements are prioritized over other elements. Specifically, the order is Type -> Class -> Enum -> Member -> EnumItem.
In case ambiguities still arise, the dot separator is now properly detected. For example, there are several “CFrame” properties; “cam.cframe” can be used to select Camera.CFrame first.
Finally, when all else fails, a “type:” prefix can be included to filter by a specific element type. For example, “button” will select the Button class, while “enum:button” will select the Button enum.
The following types are available:
class
enum
enumitem
type
property
function
event
callback
member (selects any class member)
Also note that results are filtered by your settings. For example, if you’re hiding deprecated elements, then they cannot be searched.