;; Concatenate (combine) two or more items into strings
(concat "string1" string2var)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Buffer Navigation, Editing ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Go to specific position in buffer
;; Beginning of buffer is position (point-min), end is (point-max).
;; Move forward a line or N lins
(global-set-key (kbd "C-x w h w") 'hello world')
;; Create an interactive (person calls it) function
(defun jt/bongo-open-my-playlist()
;; "Open my playlist in bongo stored in playlist environment variable
(bongo-insert-playlist-contents jt/bongo-playlist-location)