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
["query"]=newJsonObject{["type"]="string",["description"]="Search query text. Append `*` to a token to make that token a prefix phrase (`計算*` matches `計算する`)."},
30
-
["limit"]=newJsonObject{["type"]="integer",["description"]="Max results (default: 20). Responses include `truncated`, `more_available`, and `next_offset` when more rows exist.",["default"]=20},
31
-
["offset"]=newJsonObject{["type"]="integer",["description"]="Zero-based result offset for pagination; use `next_offset` from a truncated response.",["default"]=0,["minimum"]=0},
30
+
["limit"]=newJsonObject{["type"]="integer",["description"]="Max results (default: 20). Responses include `truncated` and `more_available` when more rows exist.",["default"]=20},
32
31
["lang"]=newJsonObject{["type"]="string",["description"]="Filter by language (e.g. csharp, python, javascript)"},
33
32
["snippetLines"]=newJsonObject{["type"]="integer",["description"]="Max snippet lines per result (default: 8, max: 20)",["default"]=8,["minimum"]=1,["maximum"]=SearchSnippetFormatter.MaxSnippetLines},
34
33
["maxLineWidth"]=newJsonObject{["type"]="integer",["description"]="Clamp very long single-line snippets per line (default: 512; 0 disables clamping). Match lines are clamped around the first match; non-match lines are clamped from the head. Each clamp inserts a `...(+N)...` marker showing how many chars were elided.",["default"]=LineWidthFormatter.DefaultMaxLineWidth,["minimum"]=0,["maximum"]=LineWidthFormatter.MaxAllowedLineWidth},
0 commit comments