Emacs를 실행하면서 특정 줄이 있는 파일을 여는 방법은 무엇입니까?

Emacs를 실행하면서 특정 줄이 있는 파일을 여는 방법은 무엇입니까?

+n다음과 같이 명령줄에서 emacs를 실행하고 명령줄 인수를 사용하여 n 줄에서 파일을 열 수 있습니다 .

$ emacs +n file

find-file나는 또는 다른 수단을 통해 실행 중인 emacs 인스턴스에서 동일한 작업을 수행하고 싶습니다 . 그게 가능합니까?

답변1

자신만의 함수를 작성할 수 있습니다.

(defun find-file-at-line (file line)
  "Open FILE on LINE."
  (interactive "fFile: \nNLine: \n")
  (find-file file)
  (goto-line line))

답변2

해결책을 찾았습니다이맥스 위키이렇게 하면 ffap이 줄 번호를 선택하고 파일이 발견되면 해당 파일 번호로 이동하도록 향상됩니다.

; 
; have ffap pick up line number and goto-line
; found on emacswiki : https://www.emacswiki.org/emacs/FindFileAtPoint#h5o-6
; 

(defvar ffap-file-at-point-line-number nil
  "Variable to hold line number from the last `ffap-file-at-point' call.")

(defadvice ffap-file-at-point (after ffap-store-line-number activate)
  "Search `ffap-string-at-point' for a line number pattern and
    save it in `ffap-file-at-point-line-number' variable."
  (let* ((string (ffap-string-at-point)) ;; string/name definition copied from `ffap-string-at-point'
         (name
          (or (condition-case nil
                  (and (not (string-match "//" string)) ; foo.com://bar
                       (substitute-in-file-name string))
                (error nil))
              string))
         (line-number-string 
          (and (string-match ":[0-9]+" name)
               (substring name (1+ (match-beginning 0)) (match-end 0))))
         (line-number
          (and line-number-string
               (string-to-number line-number-string))))
    (if (and line-number (> line-number 0)) 
        (setq ffap-file-at-point-line-number line-number)
      (setq ffap-file-at-point-line-number nil))))

(defadvice find-file-at-point (after ffap-goto-line-number activate)
  "If `ffap-file-at-point-line-number' is non-nil goto this line."
  (when ffap-file-at-point-line-number
    (goto-line ffap-file-at-point-line-number)
    (setq ffap-file-at-point-line-number nil)))

관련 정보