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 9d526f6 commit c6600abCopy full SHA for c6600ab
lib/runtime/goto.js
@@ -101,7 +101,7 @@ class Goto {
101
// module context
102
const currentModule = modules.current()
103
const mod = currentModule ? currentModule : 'Main'
104
- const text = editor.getText() // buffer text that will be used for fallback entry
+ const text = editor.getText() // will be used as a fallback entry, e.g.: when in Main module
105
106
gotoSymbol({
107
word,
lib/runtime/refactor.js
@@ -1,4 +1,4 @@
1
-'use babel'
+/** @babel */
2
3
import { client } from '../connection'
4
import modules from './modules'
@@ -53,7 +53,6 @@ class Refactor {
53
old,
54
full,
55
new: _new,
56
- path: editor.getPath(),
57
// local context
58
column: column + 1,
59
row: row + 1,
0 commit comments