2025-12-04 21:54:02 +09:00
|
|
|
import {
|
|
|
|
|
lsp_hover,
|
|
|
|
|
lsp_goto_definition,
|
|
|
|
|
lsp_find_references,
|
|
|
|
|
lsp_document_symbols,
|
|
|
|
|
lsp_workspace_symbols,
|
|
|
|
|
lsp_diagnostics,
|
|
|
|
|
lsp_servers,
|
2025-12-04 22:40:40 +09:00
|
|
|
lsp_prepare_rename,
|
|
|
|
|
lsp_rename,
|
|
|
|
|
lsp_code_actions,
|
|
|
|
|
lsp_code_action_resolve,
|
2025-12-04 21:54:02 +09:00
|
|
|
} from "./lsp"
|
|
|
|
|
|
2025-12-04 22:40:40 +09:00
|
|
|
import {
|
|
|
|
|
ast_grep_search,
|
|
|
|
|
ast_grep_replace,
|
|
|
|
|
} from "./ast-grep"
|
|
|
|
|
|
2025-12-08 13:35:02 +09:00
|
|
|
import { grep } from "./grep"
|
2025-12-04 22:54:13 +09:00
|
|
|
|
2025-12-04 21:54:02 +09:00
|
|
|
export const builtinTools = {
|
|
|
|
|
lsp_hover,
|
|
|
|
|
lsp_goto_definition,
|
|
|
|
|
lsp_find_references,
|
|
|
|
|
lsp_document_symbols,
|
|
|
|
|
lsp_workspace_symbols,
|
|
|
|
|
lsp_diagnostics,
|
|
|
|
|
lsp_servers,
|
2025-12-04 22:40:40 +09:00
|
|
|
lsp_prepare_rename,
|
|
|
|
|
lsp_rename,
|
|
|
|
|
lsp_code_actions,
|
|
|
|
|
lsp_code_action_resolve,
|
|
|
|
|
ast_grep_search,
|
|
|
|
|
ast_grep_replace,
|
2025-12-08 13:35:02 +09:00
|
|
|
grep,
|
2025-12-04 21:54:02 +09:00
|
|
|
}
|