I wanted to look up the different hs-special-mode-alist
forward-sexp
functions for inspiration to create my own and this is what the python
forward-sexp
looks like on my setup:
;; (MODE START END COMMENT-START FORWARD-SEXP-FUNC ADJUST-BEG-FUNC)
((python-mode "^\\s-*\\(?:def\\|class\\)\\>" nil "#"
#[257 "\300 \207"
[python-nav-end-of-defun]
2 "\n\n(fn ARG)"]
nil)
The thing that starts with #[257 "\300 \207"
and ends with ARG"]
is supposed to be a function for moving forward with forward-sexp
. What the h is it showing? Is that valid elisp? Is it compiled code? Just gibberish?