2017-01-27 49 views
0

inf-ruby支持ruby-send-region,它與marker-fu結合可以評估單行,但我更喜歡有一個函數,如ruby-send-line來在一次按鍵中評估遊標的當前行。這是否存在?如果不是,我該如何開始製作它?inf-ruby eval當前行

回答

1

下顯得做工相當不錯:

(defun ruby-send-line() 
    "Send the current line to the inferior Ruby process." 
    (interactive) 
    (ruby-send-region (point-at-bol) (point-at-eol)))