We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dae8780 commit 56aa3d5Copy full SHA for 56aa3d5
lib/runtime/goto.js
@@ -81,7 +81,7 @@ class Goto {
81
// module context
82
const currentModule = modules.current()
83
const mod = currentModule ? currentModule : 'Main'
84
- 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
85
86
gotoSymbol({
87
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