(name)
| 991 | } |
| 992 | |
| 993 | removeCommand(name) { |
| 994 | if (!name) return; |
| 995 | removeExternalCommand(name); |
| 996 | this.#refreshCommandBindings(); |
| 997 | } |
| 998 | |
| 999 | execCommand(name, view, args) { |
| 1000 | if (!name) return false; |
nothing calls this directly
no test coverage detected