Function: activities-switch-buffer

activities-switch-buffer is an interactive and byte-compiled function defined in activities.el.

Signature

(activities-switch-buffer ACTIVITY)

Documentation

Switch to a buffer associated with ACTIVITY.

Interactively, select from buffers associated with ACTIVITY; or, with prefix argument, choose another activity.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/activities-0.7.2/activities.el
(defun activities-switch-buffer (_activity)
  "Switch to a buffer associated with ACTIVITY.
Interactively, select from buffers associated with ACTIVITY; or,
with prefix argument, choose another activity."
  (interactive
   (list (if current-prefix-arg
             (activities-completing-read)
           (or (activities-current) (activities-completing-read)))))
  (unless (defvar activities-tabs-mode)
    (error "`activities-switch-buffer' currently requires `activities-tabs-mode'")))