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にある程度慣れているので、既存のコードをフックする方法などをアドバイスで理解することは可能かもしれませんが、可能であればそのルートに行くのは避けたいです。 どうもありがとう。