| 5659 | } |
| 5660 | |
| 5661 | int cbm_remove_gemini_hooks(const char *settings_path) { |
| 5662 | return remove_hooks_json((hooks_remove_args_t){ |
| 5663 | .settings_path = settings_path, |
| 5664 | .hook_event = "BeforeTool", |
| 5665 | .matcher_str = GEMINI_HOOK_MATCHER, |
| 5666 | .old_matchers = cmm_gemini_old_matchers, |
| 5667 | .old_commands = cmm_gemini_released_hook_commands, |
| 5668 | .match_command_exact = GEMINI_HOOK_COMMAND, |
| 5669 | }); |
| 5670 | } |
| 5671 | |
| 5672 | #define GEMINI_HOOK_TIMEOUT_MS 5000 |
| 5673 |
no test coverage detected