Function: hkey-buffer-move-left

hkey-buffer-move-left is an autoloaded, interactive and byte-compiled function defined in hmouse-drv.el.

Signature

(hkey-buffer-move-left)

Documentation

Swap the current buffer with the one on its left, if any; otherwise, do nothing.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-drv.el
;;; ************************************************************************
;;; Hyperbole Directional Buffer Movement Commands
;;; ************************************************************************

;;;###autoload
(defun hkey-buffer-move-left ()
  "Swap the current buffer with the one on its left, if any; otherwise, do nothing."
  (interactive)
  (hkey-buffer-move 'left))