Files
@ 7c20546f038c
Branch filter:
Location: workgroups2/src/workgroups-specialbufs.el
7c20546f038c
22.3 KiB
text/x-elisp
Use anaphora
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 | ;;; workgroups-specialbufs --- special buffers serialization
;;; Commentary:
;;
;; TODO:
;; 1. Add more special buffers support (that you use)
;; 2. Improve existing
;;
;;; Code:
(require 'workgroups-variables)
(require 'workgroups-utils-basic)
(defcustom wg-special-buffer-serdes-functions
'(wg-serialize-comint-buffer
wg-serialize-speedbar-buffer)
"Functions providing serialization/deserialization for complex buffers.
Use `wg-support' macro and this variable will be filled
automatically.
An entry should be either a function symbol or a lambda, and should
accept a single Emacs buffer object as an argument.
When a buffer is to be serialized, it is passed to each of these
functions in turn until one returns non-nil, or the list ends. A
return value of nil indicates that the function can't handle
buffers of that type. A non-nil return value indicates that it
can. The first non-nil return value becomes the buffer's special
serialization data. The return value should be a cons, with a
deserialization function (a function symbol or a lambda) as the car,
and any other serialization data as the cdr.
When it comes time to deserialize the buffer, the deserialization
function (the car of the cons mentioned above) is passed the
wg-buf object, from which it should restore the buffer. The
special serialization data itself can be accessed
with (cdr (wg-buf-special-data <wg-buf>)). The deserialization
function must return the restored Emacs buffer object.
See the definitions of the functions in this list for examples of
how to write your own."
:type 'alist
:group 'workgroups)
;; Dired
(wg-support 'dired-mode 'dired
`((deserialize . ,(lambda (buffer vars)
(when (or wg-restore-remote-buffers
(not (file-remote-p default-directory)))
(let ((d (wg-get-first-existing-dir)))
(if (file-directory-p d) (dired d))))))))
;; `Info-mode' C-h i
(wg-support 'Info-mode 'info
`((save . (Info-current-file Info-current-node))
(deserialize . ,(lambda (buffer vars)
;;(with-current-buffer
;; (get-buffer-create (wg-buf-name buffer))
(wg-aif vars
(if (fboundp 'Info-find-node)
(apply #'Info-find-node it))
(info)
(get-buffer (wg-buf-name buffer)))))))
;; `help-mode'
;; Bug: https://github.com/pashinin/workgroups2/issues/29
(if nil
(wg-support 'help-mode 'help-mode
`((save . (help-xref-stack-item help-xref-stack help-xref-forward-stack))
(deserialize . ,(lambda (buffer vars)
(wg-dbind (item stack forward-stack) vars
(condition-case err
(apply (car item) (cdr item))
(error (message "%s" err)))
(wg-awhen (get-buffer "*Help*")
(set-buffer it)
(wg-when-boundp (help-xref-stack help-xref-forward-stack)
(setq help-xref-stack stack
help-xref-forward-stack forward-stack))))))))
)
;; ielm
(wg-support 'inferior-emacs-lisp-mode 'ielm
`((deserialize . ,(lambda (buffer vars)
(ielm) (get-buffer "*ielm*")))))
;; Magit status
(wg-support 'magit-status-mode 'magit
`((deserialize . ,(lambda (buffer vars)
(if (file-directory-p default-directory)
(magit-status default-directory)
(let ((d (wg-get-first-existing-dir)))
(if (file-directory-p d) (dired d))))))))
;; Shell
(wg-support 'shell-mode 'shell
`((deserialize . ,(lambda (buffer vars)
(shell (wg-buf-name buffer))))))
;; org-agenda buffer
(defun wg-get-org-agenda-view-commands ()
"Return commands to restore the state of Agenda buffer.
Can be restored using \"(eval commands)\"."
(interactive)
(when (boundp 'org-agenda-buffer-name)
(if (get-buffer org-agenda-buffer-name)
(with-current-buffer org-agenda-buffer-name
(let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
(series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
(if series-redo-cmd
(get-text-property p 'org-series-redo-cmd)
(get-text-property p 'org-redo-cmd)))))))
(defun wg-run-agenda-cmd (f)
"Run commands F in Agenda buffer.
You can get these commands using `wg-get-org-agenda-view-commands'."
(when (and (boundp 'org-agenda-buffer-name)
(fboundp 'org-current-line)
(fboundp 'org-goto-line))
(if (get-buffer org-agenda-buffer-name)
(save-window-excursion
(with-current-buffer org-agenda-buffer-name
(let* ((line (org-current-line)))
(if f (eval f))
(org-goto-line line)))))))
(wg-support 'org-agenda-mode 'org-agenda
'((serialize . (lambda (buffer)
(wg-get-org-agenda-view-commands)))
(deserialize . (lambda (buffer vars)
(org-agenda-list)
(wg-awhen (get-buffer org-agenda-buffer-name)
(with-current-buffer it
(wg-run-agenda-cmd vars))
it)))))
;; eshell
(wg-support 'eshell-mode 'esh-mode
'((deserialize . (lambda (buffer vars)
(prog1 (eshell t)
(rename-buffer (wg-buf-name buffer) t))))))
;; term-mode
;;
;; This should work for `ansi-term's, too, as there doesn't seem to
;; be any difference between the two except how the name of the
;; buffer is generated.
;;
(wg-support 'term-mode 'term
`((serialize . ,(lambda (buffer)
(if (get-buffer-process buffer)
(wg-last1 (process-command (get-buffer-process buffer)))
"/bin/bash")))
(deserialize . ,(lambda (buffer vars)
(cl-labels ((term-window-width () 80)
(window-height () 24))
(prog1 (term vars)
(rename-buffer (wg-buf-name buffer) t)))))))
;; Python
(wg-support 'inferior-python-mode 'python
`((save . (python-shell-interpreter python-shell-interpreter-args))
(deserialize . ,(lambda (buffer vars)
(wg-dbind (pythoncmd pythonargs) vars
(run-python (concat pythoncmd " " pythonargs))
(wg-awhen (get-buffer (process-buffer
(python-shell-get-or-create-process)))
(with-current-buffer it (goto-char (point-max)))
it))))))
;; Sage shell ;;
(wg-support 'inferior-sage-mode 'sage-mode
`((deserialize . ,(lambda (buffer vars)
(save-window-excursion
(if (boundp' sage-command)
(run-sage t sage-command t)))
(if (boundp 'sage-buffer)
(wg-awhen (and
sage-buffer)
(set-buffer it)
(switch-to-buffer sage-buffer)
(goto-char (point-max))))))))
;; `inferior-ess-mode' M-x R
(wg-support 'inferior-ess-mode 'ess-inf
`((save . (inferior-ess-program))
(deserialize . ,(lambda (buffer vars)
(wg-dbind (cmd) vars
(let ((ess-ask-about-transfile nil)
(ess-ask-for-ess-directory nil)
(ess-history-file nil))
(R)
(get-buffer (wg-buf-name buffer))))))))
;; `inferior-octave-mode'
(wg-support 'inferior-octave-mode 'octave
`((deserialize . ,(lambda (buffer vars)
(prog1 (run-octave)
(rename-buffer (wg-buf-name buffer) t))))))
;; `prolog-inferior-mode'
(wg-support 'prolog-inferior-mode 'prolog
`((deserialize . ,(lambda (buffer vars)
(save-window-excursion
(run-prolog nil))
(switch-to-buffer "*prolog*")
(goto-char (point-max))))))
;; `ensime-inf-mode'
(wg-support 'ensime-inf-mode 'ensime
`((deserialize . ,(lambda (buffer vars)
(save-window-excursion
(ensime-inf-switch))
(when (boundp 'ensime-inf-buffer-name)
(switch-to-buffer ensime-inf-buffer-name)
(goto-char (point-max)))))))
;; compilation-mode
;;
;; I think it's not a good idea to compile a program just to switch
;; workgroups. So just restoring a buffer name.
(wg-support 'compilation-mode 'compile
`((serialize . ,(lambda (buffer)
(if (boundp' compilation-arguments) compilation-arguments)))
(deserialize . ,(lambda (buffer vars)
(save-window-excursion
(get-buffer-create (wg-buf-name buffer)))
(with-current-buffer (wg-buf-name buffer)
(when (boundp' compilation-arguments)
(make-local-variable 'compilation-arguments)
(setq compilation-arguments vars)))
(switch-to-buffer (wg-buf-name buffer))
(goto-char (point-max))))))
;; grep-mode
;; see grep.el - `compilation-start' - it is just a compilation buffer
;; local variables:
;; `compilation-arguments' == (cmd mode nil nil)
(wg-support 'grep-mode 'grep
`((serialize . ,(lambda (buffer)
(if (boundp' compilation-arguments) compilation-arguments)))
(deserialize . ,(lambda (buffer vars)
(compilation-start (car vars) (nth 1 vars))
(switch-to-buffer "*grep*")))))
;; speedbar-mode
(defun wg-deserialize-speedbar-buffer (buf)
"Deserialize speedbar-buffer BUF."
(when (and (require 'speedbar nil 'noerror)
(require 'dframe nil 'noerror))
(wg-dbind (this-function args) (wg-buf-special-data buf)
(let ((default-directory (car args))
bufname)
(if (boundp 'sr-speedbar-buffer-name)
(setq bufname sr-speedbar-buffer-name)
(setq bufname "*SPEEDBAR*"))
(when (and (fboundp 'speedbar-mode)
(fboundp 'speedbar-reconfigure-keymaps)
(fboundp 'speedbar-update-contents)
(fboundp 'speedbar-set-timer))
(with-no-warnings
(setq speedbar-buffer (get-buffer-create bufname))
(setq speedbar-frame (selected-frame)
dframe-attached-frame (selected-frame)
speedbar-select-frame-method 'attached
speedbar-verbosity-level 0
speedbar-last-selected-file nil)
(set-buffer speedbar-buffer)
(speedbar-mode)
(speedbar-reconfigure-keymaps)
(speedbar-update-contents)
(speedbar-set-timer 1)
(set-window-dedicated-p (get-buffer-window bufname) t)
(switch-to-buffer bufname)))
(current-buffer)
))))
(defun wg-serialize-speedbar-buffer (buffer)
"Serialize speedbar BUFFER."
(with-current-buffer buffer
(if (fboundp 'speedbar-mode)
(when (eq major-mode 'speedbar-mode)
(list 'wg-deserialize-speedbar-buffer
(list default-directory)
)))))
(defun wg-deserialize-slime-buffer (buf)
"Deserialize `slime' buffer BUF."
(when (require 'slime nil 'noerror)
(wg-dbind (this-function args) (wg-buf-special-data buf)
(let ((default-directory (car args))
(arguments (nth 1 args)))
(when (and (fboundp 'slime-start*)
(fboundp 'slime-process))
(save-window-excursion
(slime-start* arguments))
(switch-to-buffer (process-buffer (slime-process)))
(current-buffer))))))
;; `comint-mode' (general mode for all shells)
;;
;; It may have different shells. So we need to determine which shell is
;; now in `comint-mode' and how to restore it.
;;
;; Just executing `comint-exec' may be not enough because we can miss
;; some hooks or any other stuff that is executed when you run a
;; specific shell.
(defun wg-serialize-comint-buffer (buffer)
"Serialize comint BUFFER."
(with-current-buffer buffer
(if (fboundp 'comint-mode)
(when (eq major-mode 'comint-mode)
;; `slime-inferior-lisp-args' var is used when in `slime'
(when (and (boundp 'slime-inferior-lisp-args)
slime-inferior-lisp-args)
(list 'wg-deserialize-slime-buffer
(list default-directory slime-inferior-lisp-args)
))))))
;; inf-mongo
;; https://github.com/tobiassvn/inf-mongo
;; `mongo-command' - command used to start inferior mongo
(wg-support 'inf-mongo-mode 'inf-mongo
`((serialize . ,(lambda (buffer)
(if (boundp 'inf-mongo-command) inf-mongo-command)))
(deserialize . ,(lambda (buffer vars)
(save-window-excursion
(when (fboundp 'inf-mongo)
(inf-mongo vars)))
(when (get-buffer "*mongo*")
(switch-to-buffer "*mongo*")
(goto-char (point-max)))))))
(defun wg-temporarily-rename-buffer-if-exists (buffer)
"Rename BUFFER if it exists."
(when (get-buffer buffer)
(with-current-buffer buffer
(rename-buffer "*wg--temp-buffer*" t))))
;; SML shell
;; Functions to serialize deserialize inferior sml buffer
;; `inf-sml-program' is the program run as inferior sml, is the
;; `inf-sml-args' are the extra parameters passed, `inf-sml-host'
;; is the host on which sml was running when serialized
(wg-support 'inferior-sml-mode 'sml-mode
`((serialize . ,(lambda (buffer)
(list (if (boundp 'sml-program-name) sml-program-name)
(if (boundp 'sml-default-arg) sml-default-arg)
(if (boundp 'sml-host-name) sml-host-name))))
(deserialize . ,(lambda (buffer vars)
(wg-dbind (program args host) vars
(save-window-excursion
;; If a inf-sml buffer already exists rename it temporarily
;; otherwise `run-sml' will simply switch to the existing
;; buffer, however we want to create a separate buffer with
;; the serialized name
(let* ((inf-sml-buffer-name (concat "*"
(file-name-nondirectory program)
"*"))
(existing-sml-buf (wg-temporarily-rename-buffer-if-exists
inf-sml-buffer-name)))
(with-current-buffer (run-sml program args host)
;; Rename the buffer
(rename-buffer (wg-buf-name buffer) t)
;; Now we can re-rename the previously renamed buffer
(when existing-sml-buf
(with-current-buffer existing-sml-buf
(rename-buffer inf-sml-buffer-name t))))))
(switch-to-buffer (wg-buf-name buffer))
(goto-char (point-max)))))))
;; Geiser repls
;; http://www.nongnu.org/geiser/
(wg-support 'geiser-repl-mode 'geiser
`((save . (geiser-impl--implementation))
(deserialize . ,(lambda (buffer vars)
(when (fboundp 'run-geiser)
(wg-dbind (impl) vars
(run-geiser impl)
(goto-char (point-max))))
(switch-to-buffer (wg-buf-name buffer))))))
;; w3m-mode
(wg-support 'w3m-mode 'w3m
`((save . (w3m-current-url))
(deserialize . ,(lambda (buffer vars)
(wg-dbind (url) vars
(w3m-goto-url url))))))
;; notmuch
(wg-support 'notmuch-hello-mode 'notmuch
`((deserialize . ,(lambda (buffer vars)
(notmuch)
(get-buffer (wg-buf-name buffer))))))
;; Wanderlust modes:
;; WL - folders
;;(defun wg-deserialize-wl-folders-buffer (buf)
;; ""
;; (if (fboundp 'wl)
;; (wg-dbind (this-function) (wg-buf-special-data buf)
;; ;;(when (not (eq major-mode 'wl-folder-mode))
;; (wl)
;; (goto-char (point-max))
;; (current-buffer)
;; )))
;;
;;(defun wg-serialize-wl-folders-buffer (buffer)
;; ""
;; (if (fboundp 'wl)
;; (with-current-buffer buffer
;; (when (eq major-mode 'wl-folder-mode)
;; (list 'wg-deserialize-wl-folders-buffer
;; )))))
;; WL - summary mode (list of mails)
;;(defun wg-deserialize-wl-summary-buffer (buf)
;; ""
;; (interactive)
;; (if (fboundp 'wl)
;; (wg-dbind (this-function param-list) (wg-buf-special-data buf)
;; (when (not (eq major-mode 'wl-summary-mode))
;; (let ((fld-name (car param-list)))
;; ;;(switch-to-buffer "*scratch*")
;; ;;(wl)
;; ;;(wl-folder-jump-folder fld-name)
;; ;;(message fld-name)
;; ;;(goto-char (point-max))
;; ;;(insert fld-name)
;; (current-buffer)
;; )))))
;;
;;(defun wg-serialize-wl-summary-buffer (buffer)
;; ""
;; (if (fboundp 'wl)
;; (with-current-buffer buffer
;; (when (eq major-mode 'wl-summary-mode)
;; (list 'wg-deserialize-wl-summary-buffer
;; (wg-take-until-unreadable (list wl-summary-buffer-folder-name))
;; )))))
;;
;;
;;;; mime-view-mode
;;
;;(defun wg-deserialize-mime-view-buffer (buf)
;; ""
;; (wg-dbind (this-function) (wg-buf-special-data buf)
;; (when (not (eq major-mode 'mime-view-mode))
;; ;;(wl-summary-enter-handler 3570) ; only in wl-summary-mode
;; ;;(wl-summary-enter-handler) ; only in wl-summary-mode
;; (current-buffer)
;; )))
;;
;;(defun wg-serialize-mime-view-buffer (buffer)
;; ""
;; (with-current-buffer buffer
;; (when (eq major-mode 'mime-view-mode)
;; (list 'wg-deserialize-mime-view-buffer
;; ))))
;; emms-playlist-mode
;;
;; Help me on this one:
;; 1. How to start emms without any user interaction?
;;
;;(defun wg-deserialize-emms-buffer (buf)
;; "Deserialize emms-playlist buffer BUF."
;; (when (require 'emms-setup nil 'noerror)
;; (require 'emms-player-mplayer)
;; (emms-standard)
;; (emms-default-players)
;; (if (fboundp 'emms-playlist-mode)
;; (wg-dbind (this-function args) (wg-buf-special-data buf)
;; (let ((default-directory (car args)))
;; (save-window-excursion
;; ;;(emms)
;; (if (or (null emms-playlist-buffer)
;; (not (buffer-live-p emms-playlist-buffer)))
;; ;;(call-interactively 'emms-add-file)
;; (emms-source-directory "/usr/data/disk_3/Music/SORT/")
;; ))
;; ;; (emms)
;; ;;(with-current-buffer emms-playlist-buffer-name
;; ;;(emms-source-playlist-directory-tree "/usr/data/disk_3/Music/SORT/")
;; ;;(emms-source-directory "/usr/data/disk_3/Music/SORT")
;; ;;(switch-to-buffer emms-playlist-buffer-name)
;; (emms-playlist-mode-go)
;; (current-buffer)
;; )))))
;;
;;(defun wg-serialize-emms-buffer (buffer)
;; "Serialize emms BUFFER."
;; (with-current-buffer buffer
;; (if (fboundp 'emms-playlist-mode)
;; (when (eq major-mode 'emms-playlist-mode)
;; (list 'wg-deserialize-emms-buffer
;; (wg-take-until-unreadable (list default-directory))
;; )))))
;;; buffer-local variable serdes
(defun wg-serialize-buffer-mark-ring ()
"Return a new list of the positions of the marks in `mark-ring'."
(mapcar 'marker-position mark-ring))
(defun wg-deserialize-buffer-mark-ring (positions)
"Set `mark-ring' to a new list of markers created from POSITIONS."
(setq mark-ring
(mapcar (lambda (pos) (set-marker (make-marker) pos))
positions)))
(defun wg-deserialize-buffer-major-mode (major-mode-symbol)
"Conditionally retore MAJOR-MODE-SYMBOL in `current-buffer'."
(and (fboundp major-mode-symbol)
(not (eq major-mode-symbol major-mode))
(funcall major-mode-symbol)))
(defun wg-deserialize-buffer-local-variables (buf)
"Restore BUF's buffer local variables in `current-buffer'."
(cl-loop for ((var . val) . rest) on (wg-buf-local-vars buf)
do (wg-awhen (assq var wg-buffer-local-variables-alist)
(wg-dbind (var ser des) it
(if des (funcall des val)
(set var val))))))
(provide 'workgroups-specialbufs)
;;; workgroups-specialbufs.el ends here
|