;;; 999-abbrevs.el -*- lexical-binding: t; -*- ;; ;; Copyright (c) 2024 Free Software Foundation, Inc. ;; ;; Author: Luis Henriquez-Perez <luis@luishp.xyz> ;; Homepage: https://github.com/Luis-Henriquez-Perez/dotfiles/ ;; ;; This file is not part of GNU Emacs. ;; ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; ;; This program is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;; ;;; Commentary: ;; ;; Define my abbrevs for plain text. I say plain text instead of "text-mode" ;; because these abbrevs can be active in modes that are not text mode or ;; derived from text-mode. For example, in comments and strings. ;; ;;; Code: ;;;; requirements (require '050-base) (require 'abbrev) (require '999-wikipedia-typo-abbrevs) (require '990-abbrev-configuration) (define-abbrev global-abbrev-table "enhancins" "enhancing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oold" "old" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "explicity" "explicitly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "afte" "after" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "simplyfy" "simplify" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iin" "in" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ein" "in" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "endeard" "endeared" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "qite" "quite" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "somet" "something" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "boh" "both" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "looing" "looking" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "keypres" "keypress" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "menat" "meant" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "afit" "at first I thought" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "positin" "position" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mappign" "mapping" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sate" "state" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "stae" "state" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "odnt" "do not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "frnakly" "frankly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "skels" "skeletons" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "skel" "skeleton" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnwtht" "I do not want to have to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wy" "why" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "o" "of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thik" "think" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "happed" "happened" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ihbl" "I had been looking" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bfsr" "but for some reason" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tsnba" "this should not be a" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "winwiw" "which is not what I want" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inwiw" "is not what I want" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "accepta" "acceptable" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwi" "I will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "optin" "option" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ibdt" "it boils down to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnl" "I do not like" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnfai" "I did not find anything immediate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ona" "on a" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnfa" "I did not find anything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnf" "I did not find" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwto" "it was the only" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "icft" "I could find that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "caviat" "caveat" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "smd" "" #'oo-expand-save-match-data :enable-function #'oo-in-elisp-code-p) (define-abbrev global-abbrev-table "se" "" #'oo-expand-save-excursion :enable-function #'oo-in-elisp-code-p) (define-abbrev global-abbrev-table "wcb" "" #'oo-expand-elisp-with-current-buffer :enable-function #'oo-in-elisp-code-p) (define-abbrev global-abbrev-table "peerfect" "perfect" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "goten" "gotten" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "wirte" "write" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "userfacing" "user-facing" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "cutom" "custom" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "cutomizing" "customizing" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "alta" "a long time ago" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "wer" "were" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "previx" "prefix" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "iwh" "it would have" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "wda" "would have" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "writting" "writing" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "icf" "I could find" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "cicf" "closest I could find" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "closes" "closest" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "automa" "automatic" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "fftl" "for far too long" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "initializatoin" "initialization" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "alll" "all" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "intitialization" "initialization" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "determiend" "determined" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "bitt" "before-init-time" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "ait" "after-init-time" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "eit" "emacs-init-time" nil :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "happenning" "happening" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cmpute" "compute" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aways" "always" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "initializaiton" "initialization" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "isol" "isolate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tig" "thing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tigs" "things" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "detial" "detail" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "runing" "running" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wonrg" "wrong" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elasped" "elapsed" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "aih" "after-init-hook" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "esh" "emacs-startup-hook" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "dvar" "" #'oo-expand-elisp-var :enable-function #'oo-in-elisp-code-p) (define-abbrev global-abbrev-table "funn" "" #'oo-elisp-defun :enable-function #'oo-in-elisp-code-p) (define-abbrev global-abbrev-table "dfn" "" #'oo-expand-elisp-defun :enable-function #'oo-in-elisp-code-p) (define-abbrev global-abbrev-table "nn" "non-nil" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wit" "with" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vlk" "" #'oo-expand-variable-doc-link :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "snapshto" "snapshot" #'oo-expand-callable-doc-link :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "clk" "" #'oo-expand-callable-doc-link :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "flk" "" #'oo-expand-callable-doc-link :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "plk" "" #'oo-expand-package-link :enable-function #'oo-in-elisp-comment-p) (define-abbrev global-abbrev-table "plk" "" #'oo-expand-org-package-link :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "plink" "" #'oo-expand-org-package-link :enable-function #'oo-in-blog-post-p) (define-abbrev global-abbrev-table "durin" "during" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwlt" "I would like to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "everty" "every" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rmb" "remember" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnnt" "I do not need to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ht" "have to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "scowered" "load-path" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "lpath" "load-path" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "loadpath" "load-path" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "writng" "writing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elip" "elisp" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pmin" "(point-min)" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "ddir" "default-directory" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "ilil" "I like it less" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ilim" "I like it more" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ili" "I like it" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wats" "what is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "clk" "" #'oo-expand-config-link :enable-function #'oo-in-org-mode-p) (define-abbrev global-abbrev-table "clink" "" #'oo-expand-config-link :enable-function #'oo-in-org-mode-p) (define-abbrev global-abbrev-table "rnni" "return non-nil if" nil :enable-function #'oo-in-elisp-comment-p) (define-abbrev global-abbrev-table "rnnw" "return non-nil when" nil :enable-function #'oo-in-elisp-comment-p) (define-abbrev global-abbrev-table "rtnnw" "return non-nil when" nil :enable-function #'oo-in-elisp-comment-p) (define-abbrev global-abbrev-table "partial" "apply-partially" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "pmin" "(point-min)" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "pmax" "(point-max)" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "pt" "(point)" nil :enable-function #'oo-in-elisp-mode-p) (define-abbrev global-abbrev-table "dnk" "did not know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iws" "I will show" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnkht" "I did not know how to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnk" "I did not know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "esse" "essentially" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kol" "kind of like" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cb" "can be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "icb" "it can be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "complel" "completely" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ihha" "I have had a" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "incorp" "incorporate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "modifs" "modifications" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "modif" "modification" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wofa" "without further ado" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "smm" "so much more" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "devs" "developers" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "icsw" "I can see why" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inttco" "I need to take care of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "advyce" "advice" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imnk" "I might not know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "respo" "responsible" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ihni" "I have no idea" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ihniw" "I have no idea why" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "yik" "yeah I know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "yea" "yeah" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ya" "yeah" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bir" "but I realized" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "feeeling" "feling" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "feeeling" "feeling" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "weree" "we're" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lets" "let's" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tw" "this would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imag" "imagine" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "creatoin" "creation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwwt" "I will want to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dird" "dired" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "isic" "I suppose I could" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sring" "string" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "chatgpt" "chatGPT" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "accordi" "according" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "acordi" "according" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "acord" "accord" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "accor" "according" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "timesamp" "timestamp" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ultimatel" "ultimately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ulti" "ultimate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "faltitt" "for a long time I thought that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "falt" "for a long time" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ustand" "understand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ustand" "understand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "figo" "figure out" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "figur" "figure" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "packags" "packages" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ftm" "for that matter" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pic" "picure" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eople" "people" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "boilerp" "boilerplate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "riealized" "realized" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "adivce" "advice" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "afitt" "at first I thought that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fortunatel" "fortunately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fortu" "fortunate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wll" "well" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wort" "wrote" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whoppig" "whopping" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "requirem" "requirement" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "restartd" "restarted" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "meacs" "Emacs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "solutin" "solution" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "instict" "instinct" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whenev" "whenever" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wene" "whenever" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cerain" "certain" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "archivse" "archives" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pakgs" "packages" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "solu" "solution" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tryi" "trying" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vers" "version" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "happeni" "happening" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "happe" "happen" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "esrc" "#+begin_src emacs-lisp\n#+end_src\n" nil :enable-function #'oo-in-org-mode-p) (define-abbrev global-abbrev-table "evt" "everything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "everythig" "everything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tna" "to no avail" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ihht" "I have had to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ntb" "need to be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tntb" "that need to be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wanring" "warning" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reproduca" "reproducibility" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "xpand" "expand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "managem" "management" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idwtgt" "I do not want to go there" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "goig" "going" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idwt" "I do not want to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ngtdt" "not going to do this" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "verson" "version" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ftft" "for the first time" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "maye" "maybe" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "concats" "concatenates" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "becausee" "because" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wi" "which is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iatt" "in addition to this" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elsip" "elisp" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "siu" "should I use" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bottlenek" "bottleneck" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "importa" "important" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "initi" "initialize" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "majaor" "major" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rese" "research" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "authro" "author" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "annoyi" "annoying" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oepn" "open" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ocnfigg" "configuration" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "udring" "during" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vv" "vice versa" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "batt" "battery" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "uting" "using" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "specificatoin" "specification" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mng" "manage" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wdntht" "would not have to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "remvoes" "removes" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shamell" "shamelessly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shamel" "shameless" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "metad" "metadata" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "everyhing" "everything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eacs" "Emacs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "relyig" "relying" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ihnba" "I have not been able to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oot" "one of the" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oneof" "one of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "emc" "Emacs configuration" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iht" "I have to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fowtd" "figure out what to do" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "figo" "figure out" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "figg" "figure" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "testring" "testing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "recl" "recently" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "emas" "Emacs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pacmann" "package manager" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "poin" "point" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ammbrevs" "abbrevs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "optinally" "optionally" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pagkes" "packages" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "recommendd" "recommendation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "recomn" "recommendation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "recom" "recommend" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "recomm" "recommend" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "icdju" "I could just use" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwitb" "I want it to be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwditb" "I wanted it to be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "syncl" "synchronously" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "emacs" "Emacs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "critisized" "criticized" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "asynch" "asynchronously" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "asyncc" "asynchronously" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "insall" "install" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "insalls" "installs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eivl" "evil" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "biding" "binding" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abrev" "abbrev" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aform" "aforementioned" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aforemenioned" "aforementioned" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "optimi" "optimization" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itsb" "it is because" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "susp" "suspect" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ness" "necessary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hnadle" "handle" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "anonl" "anonymous lambda" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "toh" "to have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "qute" "quote" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fle" "file" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gc" "garbage collection" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "comiler" "compiler" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "suceded" "succeeded" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "genl" "generally" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nie" "nice" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wud" "would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "preff" "preference" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pref" "preference" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "usin" "using" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "numberd" "numbered" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "measore" "measure" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "loadig" "loading" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "loding" "loading" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "brnach" "branch" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "initization" "initialization" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "somone" "someone" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rmed" "removed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "investiage" "investigate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shdntb" "should not be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "preciesely" "precisely" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pretyt" "pretty" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tb" "to be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aro" "around" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tryig" "trying" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "afer" "after" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "prety" "pretty" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "brnaches" "branches" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "quet" "quiet" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "quetly" "quietly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ut" "but" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fies" "files" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "definiteively" "definitively" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nad" "and" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elfeeed" "elfeed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elfed" "elfeed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "destop" "desktop" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rcentf" "recentf" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "duplicae" "duplicate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "broser" "browser" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "diable" "disable" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "colro" "color" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "anwer" "answer" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "resitered" "registered" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "expasions" "expansions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rgister" "register" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "api" "API" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tnail" "thumbnail" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kbdd" "key binding" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "emcs" "Emacs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "settingn" "setting" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "punctionation" "punctuation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cliche" "cliché" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "naive" "naïve" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "resume" "résumé" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cafe" "café" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fiance" "fiancé" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eclair" "éclair" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "facade" "façade" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tete" "tête" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "voila" "voilà" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gotto" "have got to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "foont" "font" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wen" "when" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "htan" "than" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "firt" "first" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "neds" "ends" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "basd" "based" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reff" "reference" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "welll" "we will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dml" "doom-modeline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pickture" "picture" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bco" "because of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "swithc" "switch" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "swith" "switch" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tings" "things" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sshot" "screenshot" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "frorm" "from" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "deveotes" "devotes" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bein" "being" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idn" "I do not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ikih" "I know I have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "figing" "figuring out" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "figging" "figuring out" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tings" "things" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "variaous" "various" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wile" "while" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eant" "meant" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "levl" "level" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "checkig" "checking" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "priv" "private" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "accout" "account" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hae" "have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwwti" "I wonder whether there is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iww" "I wonder whether" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hd" "harddrive" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hardd" "harddrive" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tere" "there" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cofnigure" "configure" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "autom" "automatic" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "autom" "automatic" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "autol" "automatically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "suer" "user" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "modeline" "modeline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hwen" "when" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imnsw" "I am not sure whether" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sates" "states" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ver" "version" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "projet" "project" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "projj" "project" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "infoo" "information" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "extenral" "external" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "extenr" "external" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dosnt" "does not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sligh" "slight" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mls" "mode lines" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "autoo" "automatically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "funions" "functions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "evall" "evaluate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "configu" "configuration" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "confgi" "config" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hwever" "pertaining" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ertaining" "pertaining" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "consideer" "consider" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nece" "necessary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "improvmeent" "improvement" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hink" "think" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mentoned" "mentioned" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whove" "who have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "determening" "determining" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "determening" "determining" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "afteir" "after" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "compilor" "compiler" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "righthand" "right-hand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lefthand" "left-hand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lhs" "left-hand side" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rhs" "right-hand side" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tuf" "tough" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "decideing" "deciding" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "customizeability" "customizability" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reproducability" "reproducibility" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reproduceability" "reproducibility" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alteratives" "alternatives" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "takign" "taking" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "encript" "encrypt" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "encrypton" "encryption" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "encripton" "encryption" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "encription" "encryption" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nl" "newline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eno" "enough" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "enugh" "enough" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "enuf" "enough" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reming" "removing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sentense" "sentence" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "frist" "first" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mv" "move" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "retrun" "return" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "voer" "over" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iabt" "I am beginning to think that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tweek" "tweak" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "teak" "tweak" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "seet" "set" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "doen" "done" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "av" "available" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mans" "means" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ns" "not sure" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inf" "in fact, " nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wnev" "whenever" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nev" "never" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wenev" "whenever" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "emplate" "template" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mult" "multiple" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "multipul" "multiple" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "har" "character" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "defi" "definitely" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "woudl" "would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "awk" "awkward" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "akw" "awkward" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aiws" "as I was saying" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imns" "I am not sure" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "et" "even then" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iiwt" "if I want to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itisj" "I think I should just" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "isj" "I should just" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wereas" "whereas" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "conig" "config" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ama" "add more abbrevs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abbreviaion" "abbreviation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abbs" "abbrevs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abb" "abbreviation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ar" "around" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elm" "emacs-lisp-mode" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "soemthing" "something" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "smt" "something" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "udpate" "update" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "escpae" "escape" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "exi" "excited" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aling" "align" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "conig" "config" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "setigs" "settings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "setig" "setting" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "setin" "setting" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "settins" "settings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "setins" "settings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "stuf" "stuff" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dnms" "does not make sense" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "str" "string" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sentense" "sentence" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "isd" "I should" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ish" "I should" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "prov" "provide" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lib" "library" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whe" "whether" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gona" "going to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thig" "thing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dels" "deletes" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "envyronmen" "environment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "directries" "directories" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "qt" "qutebrowser" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "qtbrowser" "qutebrowser" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "redit" "reddit" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "insead" "instead" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "environement" "environment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inputing" "inputting" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aot" "as opposed to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iatb" "I am thinking about" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bigg" "biggest" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "consi" "consistent" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "supprot" "support" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "expressi" "expression" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "miniaml" "minimal" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mateiral" "material" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cdnt" "could not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tsa" "there is any" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "spe" "specifically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "speci" "specifically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "exo" "example of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inadv" "inadvertently" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "immediatel" "immediately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bol" "beginning of the line" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cts" "check to see" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cheks" "checks" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ali" "alias" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "unk" "unknown" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "y" "by" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tcb" "this could be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alte" "alternative" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wikip" "wikipedia" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "incon" "inconsistent" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "defs" "definitions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dnw" "does not work" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "htdw" "has to do with" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "espl" "especially" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "exc" "except" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fils" "files" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "doesnth" "does not have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fiels" "files" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "backw" "backward" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "forw" "forward" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "acept" "accept" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "swpawn" "spawn" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nother" "another" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "awesoe" "awesome" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iad" "in addition" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rearange" "rearrange" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bett" "better" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "theone" "the one" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwc" "in which case" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ben" "been" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "praticular" "particular" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "faw" "for a while" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "highl" "highlight" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whi" "while" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eh" "the" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "appa" "apparent" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "yr" "year" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "xp" "experience" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "implem" "implementation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itme" "item" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "io" "instead of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "menaul" "manual" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "entr" "entry" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "das" "days" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "teime" "time" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wast" "waste" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "taks" "tasks" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imple" "implement" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "impltt" "implementation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "divied" "divided" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itme" "item" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idkw" "I do not know what" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ambig" "ambiguous" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hsi" "his" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "stats" "statistics" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "defalt" "default" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inter" "interesting" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnt" "I do not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "david" "David" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "workflwo" "workflow" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "amnt" "amount" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gtd" "GTD" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whatd" "what would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "watd" "what would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aot" "any of these" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imn" "I am not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "honl" "honestly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "signi" "signify" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "deadlne" "deadline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aranged" "arranged" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bs" "bullshit" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alr" "already" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "exaustion" "exhaustion" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thare" "that are" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cmp" "compare" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tf" "therefore" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dren" "children" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aee" "all else equal" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aee" "all else equal" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "keyw" "keyword" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "deln" "deletion" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wndow" "window" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnht" "I did not have to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "win" "window" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "anyt" "anything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hls" "headlines" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hgs" "headings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hg" "heading" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hl" "headline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ahs" "has" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwb" "it would be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sba" "should be a" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sb" "should be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwrh" "I would rather have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iwd" "I would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iw" "I was" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "consisten" "consistent" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alphz" "alphabetize" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "menti" "mention" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "creeate" "create" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nvm" "nevermind" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ve" "very" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "higs" "highest" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "overr" "override" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "creaed" "created" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "strat" "strategy" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "adi" "aid" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "deadlie" "deadline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "comm" "comment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "comms" "comments" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "akwardly" "awkwardly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "displaed" "displayed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "crual" "crucial" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "chilren" "children" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ia" "I am" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "twt" "those were the" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oom" "one or more" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wnht" "would not have to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wdnt" "would not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itmes" "items" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ocntrol" "control" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thoro" "thorough" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itt" "I thought that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "prio" "priority" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "genda" "agenda" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bottomost" "bottommost" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "behav" "behavior" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thnk" "think" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "digesteable" "digestible" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "subtaks" "subtasks" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "themselvs" "themselves" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tasts" "tasks" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "todos" "TODOs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "todo" "TODO" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gs" "generally speaking" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aka" "also known as" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "convet" "convenient" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inevl" "inevitably" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inev" "inevitable" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "woth" "worth" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hasnt" "has not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "arbil" "arbitrarily" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vari" "various" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "keywrods" "keywords" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "acountable" "accountable" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "propspect" "prospect" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aagm" "at any given moment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "odl" "old" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "headliens" "headlines" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "props" "properties" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "headli" "headline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hli" "headline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fnd" "find" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "diffi" "difficult" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thigs" "things" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idds" "IDs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "someting" "something" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "parti" "particular" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sh" "should have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "desb" "describe" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "efficl" "efficiently" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rath" "rather" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "experd" "experienced" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "exper" "experience" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hol" "honestly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hon" "honest" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ofo" "off of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "juust" "just" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "atst" "at the same time" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abbrevx" "abbrevs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oos" "out of scope" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ano" "another" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "woud" "would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hty" "they" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "theve" "they have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "theyve" "they have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lok" "look" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "implemed" "implemented" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "evals" "evaluates" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ih" "I have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "implementd" "implemented" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "esear" "easier" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ezer" "easier" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ezr" "easier" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "persp" "perspective" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "seve" "several" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sence" "sense" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reffed" "referenced" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "menual" "manual" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pakckage" "package" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "relize" "realize" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "relized" "realized" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "templat" "template" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "templ" "template" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "unfort" "unfortunately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "floabn" "for lack of a better name" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thots" "thoughts" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mb" "maybe" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ikt" "I know that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "decis" "decision" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "atp" "at that point" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "somethign" "something" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "evalate" "evaluate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "forst" "first" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itk" "I think" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "loc" "location" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "al" "at least" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "al" "at least" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tresti" "intresting" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ntax" "syntax" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "intres" "interest" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "intres" "interest" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "taged" "tagged" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "remed" "removed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "neces" "necessary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nec" "necessary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kws" "keywords" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kw" "keyword" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mulitple" "multiple" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iiee" "It is easy enough" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mab" "maybe" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "automl" "automatically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "auotml" "automatically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "enalbed" "enabled" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "unples" "unpleasant" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hk" "hook" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "toda" "today" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aloading" "autoloading" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shoud" "should" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dong" "doing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wordd" "word" nil :enable-function #'oo-use-text-abbrev-p) ;; Note that wether is actually a word meaning "a castrated male sheep or goat nil :enable-function #'oo-use-text-abbrev-p" ;; but I do not expect to be using this word at all. I expect 99% of the tim nil :enable-function oo-enable-text-abbrev-pe ;; that when I use it I will actually mean whether nil :enable-function oo-enable-text-abbrev-p. (define-abbrev global-abbrev-table "wether" "whether" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "effici" "efficient" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "situ" "situation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sepd" "separated" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ihh" "I have had" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reme" "remember" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "remem" "remember" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hile" "while" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "menas" "means" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "equv" "equivalent" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "importnat" "important" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "attentin" "attention" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "execessivly" "excessively" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bultin" "built-in" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "exampl" "example" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alre" "already" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wrot" "wrote" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wrte" "wrote" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "soemties" "sometimes" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "upate" "update" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itd" "it would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "enginnering" "engineering" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lang" "language" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "langs" "languages" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dspite" "despite" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "diespite" "despite" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aboive" "above" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "chaning" "changing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "os" "operating system" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "potenl" "potentially" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dependant" "dependent" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wever" "wherever" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "loadng" "loading" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "soruc" "source" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "writi" "writing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "msgs" "messages" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "anym" "anymore" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "anymo" "anymore" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alwas" "always" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "remov" "remove" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iddnt" "did not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "expressoins" "expressions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "regexes" "regular expressions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "semed" "seemed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "capture" "capture" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "messag" "message" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rignt" "right" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "crating" "creating" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "preciese" "precise" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "narrowng" "narrowing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "temped" "tempted" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "headlne" "headline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "versoin" "version" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "talkinb" "talking" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mentin" "mention" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shod" "should" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "availa" "available" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wiw" "What is worse" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "varients" "variants" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "updae" "update" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "enabe" "enable" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "commen" "common" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "simples" "simplest" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thereofre" "therefore" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ecape" "escape" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "coud" "could" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "replacment" "replacement" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "applic" "application" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lsip" "lisp" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "txt" "text" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "impo" "important" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vry" "every" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "defini" "definition" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bindngs" "bindings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "regexps" "regular expression" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alty" "Alternatively" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "albeti" "albeit" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bookmarkd" "bookmarked" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whatev" "whatever" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "simplyfing" "simplifying" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "satisfiying" "satisfying" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "chara" "character" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "interediary" "intermediary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "agan" "again" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "spefically" "specifically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "certa" "certain" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "godod" "good" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wlel" "well" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "temporl" "temporarily" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "proba" "probably" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "prob" "problem" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bookms" "bookmarks" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "anythig" "anything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "boookmark" "bookmark" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sess" "session" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bookmaks" "bookmarks" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "supp" "support" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "betw" "between" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tat" "that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "arbi" "arbitrary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "regiser" "register" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "afaict" "as far as I can tell" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "writig" "writing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thme" "them" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nesly" "necessarily" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "enof" "enough" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "andto" "and to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mins" "minutes" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "happengin" "happening" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tme" "time" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sente" "sentence" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "begi" "beginning" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aroudn" "around" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "xpansion" "expansion" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nt" "not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "entier" "entire" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "unfor" "unfortunately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "applicatioin" "application" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dirs" "directories" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "avg" "average" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aleady" "already" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "happ" "happy" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "capitalizatoin" "capitalization" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "anem" "name" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "contrl" "control" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "jumpt" "jump to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thatt" "that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lcoation" "location" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "settingns" "settings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "recom" "recommended" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "unwiedly" "unwieldy" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bufer" "buffer" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "takin" "taking" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bookmakr" "bookmark" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thatd" "that would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "delimeter" "delimiter" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "defualt" "default" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "creae" "create" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reqs" "requirements" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mabe" "maybe" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ti" "it" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bufers" "buffers" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bookmakrs" "bookmarks" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ais" "as it stands," nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ais" "as it stands" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "frmae" "frame" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "somehwo" "somehow" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wa" "way" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "advisig" "advising" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inadvertedly" "inadvertently" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aamof" "as a matter of fact" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eamcs" "Emacs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oep" "open" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tendencis" "tendencies" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "magitcal" "magical" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "perosnally" "personally" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "successfullyy" "successfully" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thatss" "that is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nwo" "now" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "determne" "determine" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abbreviatons" "abbreviations" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "norml" "normal" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inappripriate" "inappropriate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "enalbe" "enable" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "realestate" "real-estate." nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "scrreen" "screen" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "prop" "property" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rfine" "refine" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "previosu" "previous" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ther" "there" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rote" "wrote" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "partl" "partly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ro" "or" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abbrrevs" "abbrevs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sev" "several" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "procise" "precise" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whenn" "when" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rounda" "roundabout" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lisence" "license" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "liscence" "license" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "generatioin" "generation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "divishion" "division" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "simialr" "similar" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cmnt" "comment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whites" "whitespace" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dup" "duplicate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dupli" "duplicate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "commentar" "commentary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ppress" "press" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "keybs" "keybindings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reqed" "required" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "examinging" "examining" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "functinos" "functions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iuwt" "if you want to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "teating" "treating" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abbort" "abort" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "essntially" "essentially" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "functoins" "functions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "loeaded" "loaded" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "appropr" "appropriate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pt" "point" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "befo" "before" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ottomh" "off the top of my head" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "anon" "anonymous" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gening" "generating" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aoy" "as of yet" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sillence" "silence" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "updadte" "update" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rnadom" "random" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "deps" "dependencies" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "req" "require" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reqm" "requirement" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "udate" "update" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cnfig" "configuration" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "orners" "corners" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sometiems" "sometimes" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abstractioins" "abstractions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "capt" "captain" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "loadingn" "loading" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shoudnt" "should not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "actu" "actually" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lke" "like" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tother" "together" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "usng" "using" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "advoid" "avoid" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bytecomp" "byte-compilation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dupl" "duplicate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "err" "error" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "repeateadly" "repeatedly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wtim" "with this in mind" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dingly" "accordingly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ued" "used" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "consice" "concise" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "doenst" "does not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "descr" "description" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vai" "via" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "laoded" "loaded" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mprove" "improve" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "errs" "errors" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vals" "values" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "env" "environment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fomr" "form" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "upadte" "update" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "deling" "deleting" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inst" "instead" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abrevs" "abbrevs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cpies" "copies" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "memor" "memory" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mch" "much" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "durat" "duration" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "buidls" "builds" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "asb" "as specified by" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "defering" "deferring" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "temr" "term" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "exs" "examples" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "suport" "support" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oftne" "often" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nl" "newline" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "packae" "package" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cmnts" "comments" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lata" "later" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ifo" "in favor of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thes" "these" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "prelim" "preliminary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "buff" "buffer" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "raied" "raised" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cmt" "comment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rased" "raised" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "boudn" "bound" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "commnt" "comment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "commendt" "comment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hnl" "honestly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "textobj" "text-object" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kbds" "keybindings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "canceled" "cancelled" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ins" "insert" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bds" "bindings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bd" "binding" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kbd" "keybinding" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cmds" "commands" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cmd" "command" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ae" "are" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gral" "general" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "progrress" "progress" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "perf" "perfect" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "separ" "separate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mgs" "message" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wrld" "world" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wich" "which" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "msg" "message" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mesage" "message" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sems" "seems" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rem" "remove" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bod" "body" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "defing" "defining" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "awkard" "akward" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "recos" "recommends" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "binds" "bindings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nd" "and" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "approp" "appropriate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aprop" "appropriate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lexi" "lexicographically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "econfig" "Emacs configuration" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "consec" "consecutive" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "conseq" "consequence" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "paces" "spaces" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "beh" "behavior" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "comnt" "comment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "keybind" "keybinding" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kbind" "keybinding" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "keybinds" "keybindings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kbinds" "keybindings" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bcomp" "byte-compilation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "unness" "unnecessary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "coment" "comment" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fror" "for" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "stup" "setup" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "inclinaition" "inclination" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tring" "trying" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wanna" "want to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "effor" "effort" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "undef" "undefined" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sym" "symbol" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wre" "were" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ws" "was" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "probs" "problems" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "syms" "symbols" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tbs" "that being said" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "evalu" "evaluation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oside" "outside" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bside" "beside" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sumes" "assumes" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "evaling" "evaluating" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "res" "result" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "src" "source" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sytle" "style" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elt" "element" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elts" "elements" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gens" "generates" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "understandibly" "understandably" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "subborn" "stubborn" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dever" "developer" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "devv" "development" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mgiht" "might" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "despa" "desparate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "progg" "programming" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ttit" "the thing is that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tti" "the thing is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "paht" "path" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "val" "value" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "optioinal" "optional" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "homogenous" "homogeneous" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "awa" "as well as" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "simul" "simultaneously" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "simultanouesly" "simultaneously" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "struct" "structure" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "structs" "structures" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "acces" "access" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "comm" "common" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "corr" "corresponding" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "expr" "expression" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "builtin" "built-in" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elems" "elements" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elem" "element" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nones" "nonessential" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abt" "about" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "yt" "youtube" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iadt" "in addition to this" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tldr" "TLDR" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mo" "more" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "opt" "option" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thro" "through" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alowed" "allowed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "allowd" "allowed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pefect" "perfect" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "negy" "negatively" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "neg" "negative" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eff" "effect" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "weras" "whereas" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fol" "following" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "foll" "following" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ooh" "out of hand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "combi" "combination" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ingen" "in general" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gened" "generated" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aload" "autoload" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "amt" "amount" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "amoutn" "amount" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lvl" "level" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cd" "could" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cud" "could" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "infor" "information" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "isn" "is not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thhe" "the" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ques" "question" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "arg" "argument" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "equiv" "equivalent" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mmend" "recommend" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "del" "delete" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "desc" "description" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hes" "he is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "impressoin" "impression" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wsa" "was" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "var" "variable" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vars" "variables" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "macroexp" "macro expansion" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "coments" "comments" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "unes" "unnecessary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "uness" "unnecessary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dk" "do not know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "emacss" "Emacs's" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ess" "essentially" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sist" "consistent" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "initing" "initializing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fnames" "filenames" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "misc" "miscellaneous" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imml" "immediately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imm" "immediate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "evv" "everything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abut" "about" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "movo" "moreover" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dandylion" "dandelion" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dandylions" "dandelions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bev" "bird's-eye view" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thot" "thought" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tmmw" "to make matters worse" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "freq" "frequency" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pertubed" "perturbed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "si" "is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vs" "versus" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mor" "more" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "configing" "configuring" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aume" "as you might expect" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ayme" "as you might expect" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tss" "timestamps" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ts" "timestamp" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "obj" "object" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oop" "object-oriented-programming" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ood" "object-oriented-design" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hwat" "what" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sep" "separate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "utube" "youtube" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hav" "have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ootq" "out of the question" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tte" "to this end" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wasnt" "was not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ult" "ultimate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ultl" "ultimately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aia" "all in all" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "soly" "solely" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idnwt" "I do not want to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "coll" "collection" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hadnt" "had not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "suces" "success" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sucess" "success" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "accros" "across" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "resonable" "reasonable" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sec" "second" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "secs" "seconds" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "reco" "recommended" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sth" "something" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ath" "anything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "corsor" "cursor" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sdb" "should not be" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rihgt" "right" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shdnt" "should not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aycs" "as you can see" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "twisi" "the way I see it" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fnr" "for no reason" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mk" "make" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "prases" "phrases" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thse" "these" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lang" "language" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "english" "English" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nuf" "enough" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idek" "I did not even know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cur" "current" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "curr" "current" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "onl" "only" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "uve" "you have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "revaled" "re-evaluated" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idid" "I did" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tres" "interesting" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ml" "mode line" nil :enable-function #'oo-use-text-abbrev-p) ;; ("def" "definitely" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "docs" "documentation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "docc" "documentation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nfo" "information" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "correclty" "correctly" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "coudl" "could" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oofone" "O(1)" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iml" "immediately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "theyre" "they are" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "punc" "punctuation" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dling" "downloading" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ez" "easy" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fol" "follow" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "popl" "populate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "als" "autoloads" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alo" "autoload" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ootw" "out of the way" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gen" "generate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aloads" "autoloads" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alods" "autoloads" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dls" "downloads" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lize" "realize" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hwo" "how" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tbe" "to be exact" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "chars" "characters" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "heres" "here is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hesi" "hesitant" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ex" "example" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "xample" "example" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cna" "can" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ord" "order" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cate" "category" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nyt" "anything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mena" "mean" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "doin" "doing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "na" "an" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "somethig" "something" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iac" "in any case" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "di" "do it" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "intro" "introduction" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tha" "that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "char" "character" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wt" "want to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hava" "have a" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "deflt" "default" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fname" "filename" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ta" "that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itl" "it will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itll" "it will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mott" "most of the time" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sd" "should" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shd" "should" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eelm" "emacs-lisp-mode" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eemacs" "Emacs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alot" "a lot" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "moro" "moreover" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "orig" "original" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iat" "in addition to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "elispp" "emacs-lisp" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idl" "I would like" nil :enable-function #'oo-use-text-abbrev-p) ;; "id" is actually a word, but I use it so infrequently and I use the phrase. Nil :enable-function oo-enable-text-abbrev-pI ;; would so frequently that it is worth having it be an abbrev for I nil :enable-function oo-enable-text-abbrev-p. (define-abbrev global-abbrev-table "prec" "precedence" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wdimbt" "what do I mean by this" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wdim" "what do I mean" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "awn" "also worth noting" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "int" "I need to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wch" "which" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ch" "which" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "igts" "I have got to say" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ihtbs" "it has to be said" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wd" "would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "freql" "frequently" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ifreql" "infrequently" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "infreql" "infrequently" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "id" "I would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wan" "want" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idht" "I do not have to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hvae" "have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cann" "cannot" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "icj" "I can just" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ic" "I can" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ure" "you are" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lhp" "Luis Henriquez-Perez" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "noly" "not only" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "specy" "specifically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rl" "really" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "argss" "arguments" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ppl" "people" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "urself" "yourself" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ab" "about" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ret" "return" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tn" "then" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "blv" "believe" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nto" "not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mone" "money" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hve" "have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "swich" "switch" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "actuall" "actually" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "evalt" "evaluate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "asap" "A.S.A.P." nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "econf" "emacs configuration" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alth" "although" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "esp" "especially" nil :enable-function #'oo-use-text-abbrev-p) ;; This clashes with the word "ill" but I barely use that word. In the rar nil :enable-function oo-enable-text-abbrev-pe ;; event where I do need to use it I will unexpand it nil :enable-function oo-enable-text-abbrev-p. (define-abbrev global-abbrev-table "ill" "I will" nil :enable-function #'oo-use-text-abbrev-p) ;; This is a common abbrev for "by the way" but I feel like I do not really us nil :enable-function oo-enable-text-abbrev-pe ;; that phrase unless I am texting nil :enable-function oo-enable-text-abbrev-p. (define-abbrev global-abbrev-table "imd" "immediately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "exand" "expand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ppet" "snippet" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tse" "these" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "usu" "usually" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iprac" "in practice" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "efy" "efficiency" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "evr" "everything" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sen" "seen" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wat" "what" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dfl" "default" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dflt" "default" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "difr" "differ" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "btw" "between" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dif" "different" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "diff" "different" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "htat" "that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rnt" "are not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "arent" "are not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tt" "the" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "len" "length" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bf" "before" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aft" "after" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "af" "at first" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "oft" "often" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dsnt" "does not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ihb" "I had been" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "comptia" "CompTIA" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gt" "get" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wev" "whatever" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "jbos" "jobs" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "theyll" "they will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "prevl" "previously" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "prev" "previous" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ivs" "I have seen" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rxp" "regular expression" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rx" "regular expression" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dl" "download" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "vcc" "version control" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wil" "will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shiftk" "SHIFT" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nots" "number of times" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "num" "number" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lins" "lines" nil :enable-function #'oo-use-text-abbrev-p) ;; I thought that this could be a bad abbrev because it is too much line. Nil :enable-function oo-enable-text-abbrev-pa ;; spelling mistake of =the=, but then I thought if I do misspell "the" it I nil :enable-function oo-enable-text-abbrev-ps ;; very unlikely I will do so by pressing =t= again nil :enable-function oo-enable-text-abbrev-p. (define-abbrev global-abbrev-table "tht" "thought" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "i" "I" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "luis" "Luis" nil :enable-function #'oo-use-text-abbrev-p) ;; This will not work because ";" is not a work constituent. I need to us nil :enable-function oo-enable-text-abbrev-pe ;; `aas' for this or come up with some other solution nil :enable-function oo-enable-text-abbrev-p. ;; (";;" "." nil :enable-function #'oo-use-text-abbrev-p) ;; TODO: move to spell-fixing abbrev nil :enable-function oo-enable-text-abbrev-p. (define-abbrev global-abbrev-table "ivb" "I have been" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "werent" "were not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rly" "really" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aagp" "at any given point" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "begn" "beginning" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idt" "I do not think" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "arent" "are not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ting" "thing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ned" "need" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dir" "directory" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ull" "you will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "spst" "supposed" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hv" "have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "desiding" "deciding" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pkgs" "packages" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pkg" "package" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ftmp" "for the most part" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "readmee" "README" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "sdnt" "should not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cme" "come" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imed" "immediately" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cesly" "successfully" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "owoto" "one way or the other" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "configs" "configurations" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "espace" "escape" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ijwi" "I just want it" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ijw" "I just want" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idw" "I do not want" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ij" "I just" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "unesy" "unnecessarily" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "unes" "unnecessary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "nes" "necessary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bec" "because" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "aswer" "answer" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dlk" "do not like" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tho" "though" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idkw" "I do not know why" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "damw" "do not ask me why" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idlk" "I do not like" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ilk" "I like" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "auly" "automatically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dsl" "Domain-Specific-Language" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fn" "function" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fns" "functions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ig" "instagram" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "econf" "Emacs configuration" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kbdm" "keyboard macro" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kbdms" "keyboard macros" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "msw" "Microsoft Windows" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table ".mail" "luis@luishp.xyz" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imho" "in my humble opinion" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imo" "in my opinion" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fyi" "for your information" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lmk" "let me know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "afaik" "as far as I know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idk" "I do not know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "gonna" "going to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "otc" "on the contrary" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "st" "sometimes" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tbh" "to be honest" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "qwerty" "QWERTY" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ngl" "not going to lie" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tfb" "to be frank" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ndo" "window" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "tis" "its" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "amly" "automatically" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "rn" "right now" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bly" "probably" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "lk" "like" nil :enable-function #'oo-use-text-abbrev-p) ;; I want the word =config= to stay the same too much for this to be useful nil :enable-function oo-enable-text-abbrev-p. ;; Right now it is frankly more of an impediment for me than something that nil :enable-function oo-enable-text-abbrev-pt ;; helps me nil :enable-function oo-enable-text-abbrev-p. (define-abbrev global-abbrev-table "questioin" "question" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ur" "your" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wiht" "with" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ith" "with" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "abilit" "ability" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ko" "K.O." nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dat" "that" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "incc" "increase" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "incs" "increase" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "decs" "deccrease" nil :enable-function #'oo-use-text-abbrev-p) ;; TODO: Add a condition preventng it from expanding if I am writing a file path nil :enable-function oo-enable-text-abbrev-p. (define-abbrev global-abbrev-table "configg" "configuration" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "obvl" "obviously" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "obv" "obvious" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "appr" "appropriate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ofc" "of course" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ok" "O.K." nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iis" "it is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "bc" "because" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iow" "in other words" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "uun" "up until now" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "exwm" "EXWM" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fe" "for example" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "evaled" "evaluated" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "imma" "I am going to" nil :enable-function #'oo-use-text-abbrev-p) ;; From https://sachachua.com/blog/2015/01/developing-emacs-micro-habits-text-automation nil :enable-function oo-enable-text-abbrev-p/ (define-abbrev global-abbrev-table "iwt" "I want to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hw" "however" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ths" "this" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "otoh" "on the one hand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "otth" "on the other hand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "kinda" "kind of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ohter" "other" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fe" "for example" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fi" "for instance" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "youve" "you have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "youd" "you would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "il" "I will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "theres" "there is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itss" "it is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "im" "I am" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "illl" "I will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "cant" "cannot" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "idd" "ID" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dont" "do not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wontt" "will not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "doesnt" "does not" nil :enable-function #'oo-use-text-abbrev-p) ;; Not sure I actually want this abbrev because =wont= is actually a word nil :enable-function oo-enable-text-abbrev-p. (define-abbrev global-abbrev-table "ine" "one" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "mispelling" "misspelling" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ry" "very" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wont" "will not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "thats" "that is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "u" "you" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ul" "you will" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dont" "do not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dnt" "don't" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wo" "without" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ive" "I have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ik" "I know" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "plx" "complex" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ribe" "describe" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "iff" "if and only if" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "addd" "additionally" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "weve" "we have" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whats" "what is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "havent" "have not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "didnt" "did not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "shouldnt" "should not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "isnt" "is not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fo" "of" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ud" "you would" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fwis" "from what I see" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fwiu" "from what I understand" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "youre" "you are" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wouldnt" "would not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "woudnt" "would not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "coudnt" "could not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "couldnt" "could not" nil :enable-function #'oo-use-text-abbrev-p) ;; These abbrevs are focused on spelling mistakes. ;; Here I focus on fixing unambiguous spelling mistakes. (define-abbrev global-abbrev-table "onw" "own" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "frst" "first" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "edting" "editing" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "alread" "already" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "htats" "that is" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "whehther" "whether" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "somehting" "something" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "hte" "the" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "te" "the" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "th" "the" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "ot" "to" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "wnat" "want" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "stoped" "stopped" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "capfs" "completion-at-point-functions" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "suprise" "surprise" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "functoin" "function" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "refect" "reflect" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dint" "did not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "orignal" "original" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "eachother" "each other" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dn" "do not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dsn" "does not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "fsr" "for some reason" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "propogate" "propagate" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pakcage" "package" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "pakcages" "packages" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "motn" "more often than not" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "itc" "in that case" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "probl" "problem" nil :enable-function #'oo-use-text-abbrev-p) (define-abbrev global-abbrev-table "dered" "considered" nil :enable-function #'oo-use-text-abbrev-p) ;;; provide (provide '999-abbrevs) ;;; 999-abbrevs.el ends here