소스 검색

Add comment

master
10sr 6 년 전
부모
커밋
ff85e1d1e7
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일4개의 추가작업 그리고 9개의 파일을 삭제
  1. +4
    -9
      emacs.el

+ 4
- 9
emacs.el 파일 보기

@@ -1212,15 +1212,9 @@ ARG is num to show, or defaults to 7."
(interactive "P")
(let ((f (dired-get-filename)))
(message "%s"
(with-temp-buffer
(insert-file-contents f)
(buffer-substring-no-properties
(point-min)
(progn (goto-char (point-min))
(forward-line (1- (if arg
(prefix-numeric-value arg)
7)))
(point-at-eol)))))))
(apply 'concat
(my-file-head f
7)))))

(defun my-dired-diff ()
"Show diff of marked file and file of current line."
@@ -1605,6 +1599,7 @@ This mode is a simplified version of `adoc-mode'."

(defun my-file-head (filename &optional n)
"Return list of first N lines of file FILENAME."
;; Work with japanese text?
(let ((num (or n 10))
(size 100)
(beg 0)


불러오는 중...
취소
저장