Small codemirror changes (#2898)
* Drop unneeded compute indirection in lspAutocompleteKeymapExt * Dispatch only a single transaction in requestFormatting Remove addToHistory.of(true), since that is the default. * Remove old comment and some useless tests * Just store the view, not the previous viewUpdate, in CompletionRequester * small codemirror changes from marijnh Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix some flaky tests Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: Marijn Haverbeke <marijn@haverbeke.berlin>
This commit is contained in:
@ -46,15 +46,7 @@ class KclLanguage extends Language {
|
||||
|
||||
const parser = new KclParser()
|
||||
|
||||
super(
|
||||
data,
|
||||
// For now let's use the javascript parser.
|
||||
// It works really well and has good syntax highlighting.
|
||||
// We can use our lsp for the rest.
|
||||
parser,
|
||||
[plugin],
|
||||
'kcl'
|
||||
)
|
||||
super(data, parser, [plugin], 'kcl')
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user