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 0f91e5c commit a3830b6Copy full SHA for a3830b6
lib_src/misc/cells.ts
@@ -72,8 +72,8 @@ function jlGet(editor: TextEditor) {
72
return [res]
73
}
74
75
-export function moveNext(editor: TextEditor) {
76
- if (editor == null) {
+export function moveNext(editor: TextEditor | null | undefined) {
+ if (!editor) {
77
editor = atom.workspace.getActiveTextEditor()
78
79
if (editor.getGrammar().scopeName.indexOf("source.julia") > -1) {
0 commit comments