-
Notifications
You must be signed in to change notification settings - Fork 289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] fix (tab) indentation within CodeMirror #4832
Merged
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4cc809b
- tab indent by 4
hasan-sh 2dbe626
unused variables
hasan-sh 1ca714e
code enhancement
hasan-sh f6715d4
Merge branch 'main' into fix-indentation
mergify[bot] dbc128c
Merge branch 'main' into fix-indentation
Felienne ef8a872
Merge branch 'main' into fix-indentation
hasan-sh 5a71a89
Fix tests
hasan-sh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,9 @@ import { EditorView, ViewUpdate, drawSelection, dropCursor, highlightActiveLine, | |
highlightActiveLineGutter, highlightSpecialChars, keymap, lineNumbers } from '@codemirror/view' | ||
import { EditorState, Compartment, StateEffect, Prec } from '@codemirror/state' | ||
import { EventEmitter } from "./event-emitter"; | ||
import { deleteTrailingWhitespace, defaultKeymap, historyKeymap } from '@codemirror/commands' | ||
import { deleteTrailingWhitespace, defaultKeymap, historyKeymap, indentWithTab } from '@codemirror/commands' | ||
import { history } from "@codemirror/commands" | ||
import { indentOnInput, defaultHighlightStyle, syntaxHighlighting ,LanguageSupport } from "@codemirror/language" | ||
import { indentOnInput, defaultHighlightStyle, syntaxHighlighting ,LanguageSupport, indentUnit, indentService } from "@codemirror/language" | ||
import { highlightSelectionMatches, searchKeymap } from "@codemirror/search"; | ||
import { | ||
errorLineField, debugLineField, decorationsTheme, addDebugLine, | ||
|
@@ -24,6 +24,10 @@ import { error } from "./modal"; | |
import { ClientMessages } from "./client-messages"; | ||
import { Tag, styleTags, tags as t } from "@lezer/highlight"; | ||
|
||
|
||
// CodeMirror requires # of indentation to be in spaces. | ||
const indentSize = ' '.repeat(4); | ||
|
||
export class HedyCodeMirrorEditorCreator implements HedyEditorCreator { | ||
/** | ||
* This function should initialize the editor and set up all the required | ||
|
@@ -117,7 +121,17 @@ export class HedyCodeMirrorEditor implements HedyEditor { | |
...defaultKeymap, | ||
...searchKeymap, // we need to replace this with our own search widget | ||
...historyKeymap, | ||
indentWithTab, | ||
]), | ||
indentUnit.of(indentSize), | ||
indentService.of((context, pos) => { | ||
const previousLine = context.lineAt(pos, -1); | ||
const nextLine = context.lineAt(pos + 1, -1); | ||
const nextIndentationSize = nextLine.text.match(/^\s*/)![0].length; | ||
const prevIndentationSize = previousLine.text.match(/^\s*/)![0].length; | ||
const indentBy = Math.max(prevIndentationSize, nextIndentationSize); | ||
return indentBy | ||
}), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When there's no next line, this returns an error. Also, can you add this code to its own function? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good one, fixed! |
||
monokai, | ||
this.theme.of(mainEditorStyling), | ||
this.readMode.of(EditorState.readOnly.of(isReadOnly)), | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was a explicit decision not to use this. Felienne and I discussed it when making the change, and we ultimetaly decided to leave the default behaviour due to accessibility concerns that the CodeMirror maintainer expresses here: https://codemirror.net/examples/tab/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See this #4830 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we do this, then we need to mention somewhere that this escape hatch is possible! Perhaps on the tutorial?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think users will know that naturally, but I do agree, that would be the perfect spot to include it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be inclined to agree if our users were computer literates, but since our age group is around 12, I'm not sure they'd know this. We can also add it in the Teacher Manual in a future PR and merge this, what do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree.