Skip to content

Instantly share code, notes, and snippets.

@adamczykm
Created July 14, 2015 23:15
Show Gist options
  • Save adamczykm/a6926f9edf3bb707ab1d to your computer and use it in GitHub Desktop.
Save adamczykm/a6926f9edf3bb707ab1d to your computer and use it in GitHub Desktop.
(defun find-closing-bracket ()
(interactive)
(search-forward "]")
(when (not (equal (point) (- (point-max) 1)))
(goto-char (point))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment