()
| 1910 | |
| 1911 | // Decrease the editor font size by 1px. |
| 1912 | decreaseFontSize() { |
| 1913 | const fontSize = this.config.get('editor.fontSize'); |
| 1914 | if (fontSize > 1) { |
| 1915 | this.config.set('editor.fontSize', fontSize - 1); |
| 1916 | } |
| 1917 | } |
| 1918 | |
| 1919 | // Restore to the window's default editor font size. |
| 1920 | resetFontSize() { |
no test coverage detected