feat(tools/passively): Implement automatic passive learning in Emacs

Adds all the functionality described in the README in cl/4066.

This code is very closely related to //users/tazjin/russian/russian.el

Change-Id: I14f1052cebfbe4886e75e8efc730eacbf8773f29
This commit is contained in:
Vincent Ambo 2021-12-03 13:36:14 +03:00 committed by tazjin
parent ba8db7b6da
commit 1b41e34e79
2 changed files with 128 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ depot, ... }:
depot.tools.emacs-pkgs.buildEmacsPackage {
pname = "passively";
version = "1.0";
src = ./passively.el;
externalRequires = (epkgs: with epkgs; [ ht ]);
}