Skip to content

progfolio/wordel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wordel: Wordle (aka Lingo) in Emacs

https://melpa.org/packages/wordel-badge.svg

./demo.gif

For the uninitiated, this is a process of elimination word game. You guess a word and each letter of your word will be color coded to reveal how it relates to the hidden word.

Install

Use-package declaration

(use-package wordel
  ;; Via Elpaca:
  :elpaca   (wordel :host github :repo "progfolio/wordel" :files (:defaults "words"))
  ;; Via straight.el:
  :straight (wordel :host github :repo "progfolio/wordel" :files (:defaults "words"))
  ;; Via package.el
  :ensure t)

Manually

  • Clone this repo into your load-path
  • (require 'wordel)
  • M-x wordel or M-x wordel-marathon

Evil users

You’ll want to be in insert mode for wordel’s modes.

(evil-make-intercept-map wordel-mode-map)
(evil-make-intercept-map wordel-select-mode-map)
(evil-set-initial-state  'wordel-mode 'insert)
(evil-set-initial-state  'wordel-select-mode 'insert))

FAQ

How do I add more word lists?

Word lists are plain text files added under wordel-words-dir. There should be only one word per line.

Releases

No releases published

Sponsor this project

 

Packages

No packages published