Emacs中的混合行号模式?
在相对行号模式下,是否可以显示当前行的绝对号而不是“ 0”?有时将其称为“混合线路号码模式”。 像这样: 7 6 this.oscs[i].oscillator.start(); 5 } 4 3 this.bindController(); 2 }; 1 252 factory.stop = function () { <- current line number shows 1 console.log('theremin: now in stop 2'); 2 this.leapController.disconnect(); 3 //this.leapController.removeListener('frame', factory.ctrlFrameHandler); 4 //this.leapController.removeListener('frame', this.ctrlFrameHandler); 5 this.leapController.removeListener('frame', this.leapController.listeners('frame')[0]); 这是在vim中执行操作的方法。 我快疯了,并在.emacs中激活相对行号模式,如下所示: (linum-mode) (linum-relative-global-mode) 我没有看到任何与此相关的软件包,也没有在现有软件包中对其进行任何自定义。我对elisp有点熟悉,因此也许可以弄清楚如何通过建议来钩住现有代码,但我宁愿避免采用这种方式。 非常感谢。