ฉันจะสลับอย่างรวดเร็วระหว่างไฟล์และบัฟเฟอร์ * scratch * ที่มีโหมดหลักเดียวกันได้อย่างไร


24

ในบางครั้งในขณะที่ทำงานกับรหัสคุณควรเปิดบัฟเฟอร์ * scratch * เพื่อวางข้อมูลโค้ดจากไฟล์รหัสนั้นอย่างรวดเร็ว

หากฉันกำลังทำงานกับสคริปต์ Perl ฉันต้องการเปิดบัฟเฟอร์ * scratch * ด้วยcperl-modeอย่างรวดเร็ว มันจะเป็นการดีหากกระโดดกลับไปที่บัฟเฟอร์โค้ดที่ฉันทำงานอยู่

คำตอบ:


26

มันจะสะดวกในการผูกฟังก์ชั่นด้านล่างกับการผูกกุญแจที่คุณเลือก หากคุณกำลังทำงานกับFILEบัฟเฟอร์อยู่การเรียกใช้ฟังก์ชั่นด้านล่างจะสลับไปมาระหว่างFILEบัฟเฟอร์หลัก * scratch * ที่เรียก*scratch-MAJOR-MODE*ในโหมดหลักและFILEบัฟเฟอร์

ได้รับตัวอย่างในคำถามถ้าฉันทำงานในสคริปต์ Perl เรียกว่าmyperl.plเรียกฟังก์ชั่นนี้จะสลับไปมาระหว่างและmyperl.pl*scratch-cperl-mode*

(defun modi/switch-to-scratch-and-back (&optional arg)
  "Toggle between *scratch-MODE* buffer and the current buffer.
If a scratch buffer does not exist, create it with the major mode set to that
of the buffer from where this function is called.

        COMMAND -> Open/switch to a scratch buffer in the current buffer's major mode
    C-0 COMMAND -> Open/switch to a scratch buffer in `fundamental-mode'
    C-u COMMAND -> Open/switch to a scratch buffer in `org-mode'
C-u C-u COMMAND -> Open/switch to a scratch buffer in `emacs-elisp-mode'

Even if the current major mode is a read-only mode (derived from `special-mode'
or `dired-mode'), we would want to be able to write in the scratch buffer. So
the scratch major mode is set to `org-mode' for such cases.

Return the scratch buffer opened."
  (interactive "p")
  (if (and (or (null arg)               ; no prefix
               (= arg 1))
           (string-match-p "\\*scratch" (buffer-name)))
      (switch-to-buffer (other-buffer))
    (let* ((mode-str (cl-case arg
                       (0  "fundamental-mode") ; C-0
                       (4  "org-mode") ; C-u
                       (16 "emacs-lisp-mode") ; C-u C-u
                       ;; If the major mode turns out to be a `special-mode'
                       ;; derived mode, a read-only mode like `help-mode', open
                       ;; an `org-mode' scratch buffer instead.
                       (t (if (or (derived-mode-p 'special-mode) ; no prefix
                                  (derived-mode-p 'dired-mode))
                              "org-mode"
                            (format "%s" major-mode)))))
           (buf (get-buffer-create (concat "*scratch-" mode-str "*"))))
      (switch-to-buffer buf)
      (funcall (intern mode-str))   ; http://stackoverflow.com/a/7539787/1219634
      buf)))

ฉันจะแยกโหมด dired โหมดคำศัพท์และโหมดอื่นที่ไม่สามารถแก้ไขได้สำหรับฟังก์ชั่นนี้ได้อย่างไร
godblessfq

@godblessfq ฉันได้รับการแก้ไขเพียงแค่นี้เมื่อเร็ว ๆ นี้ในการตั้งค่าของฉัน สำหรับตอนนี้คุณสามารถรับเวอร์ชันนั้นได้จากที่นั่น ฉันจะอัปเดตคำตอบนี้เมื่อไปถึงคอมพิวเตอร์
Kaushal Modi

@godblessfq ฉันได้อัปเดตคำตอบแล้ว ลองใช้ดูว่าเหมาะกับคุณหรือไม่
Kaushal Modi

ทำงานเหมือนจับใจ!
godblessfq
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.