Google ngrams in emacs

1 · · March 8, 2021, 11 a.m.
Summary I integrate the Google ngram viewer functionality into emacs for suggesting words in context. Demonstration I demonstrate selecting alternative middle word for the given context words. Code custom.el configuration 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 (defcustom google-ngrams-corpus "" "Google ngrams corpus" :type 'string :group 'system-custom :initialize #'custom-initialize-default :options (list "15 # english 2012" "16 # english fiction" "26 # english 2019") :set (lam...