Last active
October 4, 2021 18:02
-
-
Save nic0-lab/a318352d7da8f10cb6f10ff9f491826a to your computer and use it in GitHub Desktop.
Open a random wiki page from emacs.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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