Skip to content

Instantly share code, notes, and snippets.

@sjl
Created June 12, 2018 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sjl/91ee2873ea2d8d6513eb6b4940ffc589 to your computer and use it in GitHub Desktop.
Save sjl/91ee2873ea2d8d6513eb6b4940ffc589 to your computer and use it in GitHub Desktop.
(defcommand wrapping-move-focus (direction)
((:direction "Enter a direction: "))
(let ((frame (current-frame)))
(move-focus direction)
(when (eql frame (current-frame))
(ecase direction
(:right (gnext) (dotimes (i 10) (move-focus :left)))
(:left (gprev) (dotimes (i 10) (move-focus :left)))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment