¿Cómo puedo alternar rápidamente entre un archivo y un búfer * scratch * que tiene el mismo modo principal?


24

A veces, mientras trabaja en un código, es útil abrir rápidamente un búfer * scratch * para pegar un fragmento de ese archivo de código.

Si estoy trabajando en un script Perl, me gustaría abrir rápidamente un búfer * scratch * con in cperl-mode. También sería bueno volver rápidamente al búfer de código en el que estaba trabajando originalmente.

Respuestas:


26

Será conveniente vincular la función siguiente a una combinación de teclas de su elección. Si actualmente está trabajando en un FILEbúfer, al llamar a la función siguiente se alternará entre FILEel búfer * scratch * específico del modo mayor llamado *scratch-MAJOR-MODE*y el FILEbúfer.

Dado el ejemplo en cuestión, si estoy trabajando en un script Perl llamado myperl.pl, llamar a esta función alternará entre myperl.ply *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)))

¿Cómo podría excluir el modo directo, el modo de término y otro modo no editable para esta función?
godblessfq

@godblessfq Arreglé esto recientemente en mi configuración . Por ahora puedes obtener esa versión desde allí. Actualizaré esta respuesta cuando llegue a una computadora.
Kaushal Modi

@godblessfq He actualizado la respuesta. Pruébelo y vea si funciona para usted.
Kaushal Modi

¡Funciona de maravilla!
godblessfq
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.