Enter the query into the form above.
API method:
GET /api/symbols?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Return a copy of STR colorized using ANSI escape sequences according to COLOR. At the end of the returned string, the color attributes are reset such that subsequent output will not have any colors in effect.
Return true if PORT is a terminal that supports hyperlink escapes.
Return STR with extra ANSI color attributes if PORT supports it.
Return a procedure that, given a string, colorizes according to RULES. RULES must be a list of regexp/color pairs; the whole match of a regexp is colorized with the corresponding color.
Return STR with extra ANSI color attributes if PORT supports it.
Return TEXT with escapes for a hyperlink to FILE.
Return STR with extra ANSI color attributes if PORT supports it.
Return a string that denotes a hyperlink using an OSC escape sequence as documented at <https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda>.
Return a procedure that applies COLOR to the given string.
Return true if we should write colored output to PORT.
Like fold-tree, but call (PROC NODE RESULT) only for leaf nodes.
Call (PROC NODE RESULT) for each node in the tree that is reachable from ROOTS, using INIT as the initial value of RESULT. The order in which nodes are traversed is not specified, however, each node is visited only once, based on an eq? check. Children of a node to be visited are generated by calling (CHILDREN NODE), the result of which should be a list of nodes that are connected to NODE in the tree, or '() or #f if NODE is a leaf node.
Return a new cpio file header.
Create a character or block device header.
DEVICE-TYPE is either 'char-special or 'block-special.
The number of hard links is assumed to be 1.
Return a cpio header corresponding to the info returned by STAT for FILE, using FILE-NAME as its file name.