我正在用JS编写我的第一个程序,当鼠标悬停在Atom中时,我需要返回光标文本。
import {CompositeDisposable} from 'atom';
const atom = require("atom");
const cursorListener = {
subscriptions: null,
cursorReturn: null,
activate (state) {
constructor();
//this.subscriptions = new Atom.CompositeDisposable();
},
constructor() {
this.editor = editor;
this.getClient = getClient;
this.subscriptions = new Atom.CompositeDisposable();
}
this.reinitialize();
this.subscriptions.add(atom.texteditor.getWordUnderCursor()) {
var check = atom.texteditor.getWordUnderCursor();
console.log(check);
},
deactivate () {
this.subscriptions.dispose();
this.cursorReturn.destroy();
},
serialize () {
}
};
exports.cursorListener = cursorListener;
我在开发人员模式下运行原子,它不起作用。我已经搜索了很多地方,无法解决这个问题。如果有人可以帮助我,请告诉我。谢谢。