We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 202a670 commit 951477eCopy full SHA for 951477e
src/indent.ts
@@ -12,8 +12,8 @@ import {syntaxTree} from "./language"
12
export const indentService = Facet.define<(context: IndentContext, pos: number) => number | null | undefined>()
13
14
/// Facet for overriding the unit by which indentation happens. Should
15
-/// be a string consisting either entirely of the same whitespace
16
-/// character. When not set, this defaults to 2 spaces.
+/// be a string consisting entirely of the same whitespace character.
+/// When not set, this defaults to 2 spaces.
17
export const indentUnit = Facet.define<string, string>({
18
combine: values => {
19
if (!values.length) return " "
0 commit comments