josteink / wordel

Wordle in Emacs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

With straight.el

Directly

(straight-use-package '(wordel :host github :repo "progfolio/wordel" :files (:defaults "words")))

via MELPA

(straight-use-packge 'wordel)

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.

About

Wordle in Emacs

License:GNU Affero General Public License v3.0


Languages

Language:Emacs Lisp 100.0%