Skip to content

Instantly share code, notes, and snippets.

@dsjt
Created July 31, 2014 09:36
Show Gist options
  • Save dsjt/c3e9239c338adcbb8161 to your computer and use it in GitHub Desktop.
Save dsjt/c3e9239c338adcbb8161 to your computer and use it in GitHub Desktop.
view-pdf
(defun view-pdf()
(interactive)
(let ((pdf-file (concat (car (split-string (buffer-file-name) "\\.")) ".pdf"))
(viewer pdf-viewer))
(start-process "*view-pdf*" nil viewer pdf-file)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment