()
| 73 | } |
| 74 | |
| 75 | private evaluateSetting() { |
| 76 | const debugEnabled = workspace |
| 77 | .getConfiguration("cursorless") |
| 78 | .get<boolean>("debug")!; |
| 79 | if (debugEnabled) { |
| 80 | this.enableDebugLog(); |
| 81 | } else { |
| 82 | this.disableDebugLog(); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | private logBranchTypes(event: TextEditorSelectionChangeEvent) { |
| 87 | const location = new Location( |
no test coverage detected