« ElScreen 1.4.0(まだだけど) | Main | OpenVPN »

2005年11月14日

(back-to-indentation)

[ カテゴリ: Emacsen ]

うーん、 elisp漬いてますな。中山さんとこ経由、新堂さんで。 C-aに(beginning-of-line)と組み合わせるとさらに気持ちいいという話。

(defun toggle-beginning-or-indentation-of-line (arg)
  (interactive "p")
  (if (looking-at "^")
      (back-to-indentation)
    (beginning-of-line arg))))
(define-key global-map "\C-a" 'toggle-beginning-or-indentation-of-line)

Comments

Post a comment




Remember Me?