Skip to content

Instantly share code, notes, and snippets.

@danielkrizian
Last active February 5, 2021 22:56
Show Gist options
  • Save danielkrizian/fa210bde4a98c2684c8631d6950c0404 to your computer and use it in GitHub Desktop.
Save danielkrizian/fa210bde4a98c2684c8631d6950c0404 to your computer and use it in GitHub Desktop.
elisp cheatsheet

Definitions

  • buffer vs window vs frame
  • modeline
  • echo area
  • minibuffer
  • font locking correct term for syntax highlighting. made up of faces of properties (color, font, text size …) that pretty-print the text
  • point another word for caret or cursor: visual marker where characters typed will appear
  • mark
  • region contiguous block of text bounded by point and mark. in other editors called “selection” or “highlight”
  • current buffer buffer that has the point
  • extented command functionality behind M-x

Debugging

how to instrument a function for debugging when the function is called

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment