|
3 | 3 | * License: MS-RSL – see LICENSE.md for details
|
4 | 4 | */
|
5 | 5 |
|
| 6 | +// cSpell:ignore multifile errorstyle subframe rtex popout codegen autobuild titlebar |
| 7 | + |
6 | 8 | /*
|
7 | 9 | Code Editor Actions -- This the base class for all frame editor actions.
|
8 | 10 |
|
@@ -1756,7 +1758,7 @@ export class Actions<
|
1756 | 1758 | if (syncdoc == null || syncdoc.is_fake) {
|
1757 | 1759 | // give up -- don't even have a syncdoc...
|
1758 | 1760 | // A derived class that doesn't use a syncdoc
|
1759 |
| - // might overload programmatical_goto_line to make |
| 1761 | + // might overload programmatically_goto_line to make |
1760 | 1762 | // sense for whatever it works with.
|
1761 | 1763 | return false;
|
1762 | 1764 | }
|
@@ -2032,7 +2034,7 @@ export class Actions<
|
2032 | 2034 | }
|
2033 | 2035 |
|
2034 | 2036 | // Runs spellchecker on the backend last saved file, then
|
2035 |
| - // sets the mispelled_words part of the state to the immutable |
| 2037 | + // sets the misspelled_words part of the state to the immutable |
2036 | 2038 | // Set of those words. They can then be rendered by any editor/view.
|
2037 | 2039 | async update_misspelled_words(time?: number): Promise<void> {
|
2038 | 2040 | if (this.isClosed()) return;
|
@@ -3101,7 +3103,7 @@ export class Actions<
|
3101 | 3103 | return filename_extension(this.path);
|
3102 | 3104 | }
|
3103 | 3105 |
|
3104 |
| - // return the suppoted scopes for this document type. |
| 3106 | + // return the supported scopes for this document type. |
3105 | 3107 | // do not have to include "none" and "all", since they are always supported.
|
3106 | 3108 | languageModelGetScopes(): Set<LanguageModelScope> {
|
3107 | 3109 | return new Set(["selection"]);
|
|
0 commit comments