* Save tab handler --> Writes to filesystem of whichever path is being changed
()
| 498 | * Save tab handler --> Writes to filesystem of whichever path is being changed |
| 499 | */ |
| 500 | saveTab() { |
| 501 | fs.writeFileSync(this.state.previousPaths[this.state.previousPaths.length - 1], this.state.openTabs[this.state.previousPaths[this.state.previousPaths.length - 1]].editorValue, { encoding: 'utf8' }); |
| 502 | } |
| 503 | /** |
| 504 | * Sets active tab to change highlighting, and to determine which Monaco model is open |
| 505 | * @param {String} path Path of the tab being set to Active |
no outgoing calls
no test coverage detected