This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;eshell-cmpl | |
(require 'pcomplete) | |
(defun pcomplete/sudo() | |
"Completion rules for the `sudo' command." | |
(let ((pcomplete-help "complete after sudo")) | |
(pcomplete-here (eshell-complete-commands-list)))) | |
(defun my-eshell-complete-parse-arguments() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; lisp-electric.el --- electric commands editing for S-expression | |
;; メインとなるS式編集用コマンドは以下の3つです。 | |
;; | |
;; lel-matching-char: | |
;; | |
;; "(" か "[" を入力するとそれ自体を挿入し、イベントループに入ります。 | |
;; | |
;; イベントループ内ではタブかS-タブを入力すると、S式単位で範囲選択が | |
;; できます。 |
NewerOlder