Skip to content

Instantly share code, notes, and snippets.

View nic0-lab's full-sized avatar

Nicolas Macé nic0-lab

View GitHub Profile
@nic0-lab
nic0-lab / open-random-wiki-page.el
Last active October 4, 2021 18:02
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"))