Skip to content

Instantly share code, notes, and snippets.

@nic0-lab
Last active October 4, 2021 18:02
Show Gist options
  • Save nic0-lab/a318352d7da8f10cb6f10ff9f491826a to your computer and use it in GitHub Desktop.
Save nic0-lab/a318352d7da8f10cb6f10ff9f491826a to your computer and use it in GitHub Desktop.
Open a random wiki page from emacs.
(defun emacs-random-wiki-page ()
"Open a random page of emacs wiki."
(interactive)
(browse-url "https://www.emacswiki.org/emacs?action=random"))
(defun vim-random-wiki-page ()
"Open a random page of vim's wiki."
(interactive)
(browse-url "https://vim.fandom.com/wiki/Special:RandomInCategory/VimTip"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment