kkk-abbrev.el 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ;;; kkk-abbrev.el -*- -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2023 Vinicius Teshima <vini.tes@pm.me>
  3. ;; Author: Vinicius Teshima <vini.tes@pm.me>
  4. ;; This program is free software; you can redistribute it and/or modify
  5. ;; it under the terms of the GNU General Public License as published by
  6. ;; the Free Software Foundation, either version 3 of the License, or
  7. ;; (at your option) any later version.
  8. ;; This program is distributed in the hope that it will be useful,
  9. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. ;; GNU General Public License for more details.
  12. ;; You should have received a copy of the GNU General Public License
  13. ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. ;;; Commentary:
  15. ;;
  16. ;;; Code:
  17. ;; (abbrev-table-put global-abbrev-table
  18. ;; :regexp "\\(?:^\\|[\t\s]+\\)\\(?1:[:_].*\\)")
  19. ;; (defun kkk-abbrev--setup-python ()
  20. ;; (let ((_tbl python-mode-abbrev-table))
  21. ;; (abbrev-table-put _tbl
  22. ;; :regexp "\\(?:^\\|[\t\s]+\\)\\(?1:[:_].*\\)")
  23. ;; (dolist (_item '(("_fordict" . "for k, v in")
  24. ;; ("o" . "")
  25. ;; ) )
  26. ;; (define-abbrev _tbl (car _item) (cdr _item))
  27. ;; )
  28. ;; )
  29. ;; (abbre-mode 1)
  30. ;; (remove-hook 'python-mode-hook #'kkk-abbrev--setup-python)
  31. ;; )
  32. ;; (add-hook 'python-mode-hook #'kkk-abbrev--setup-python)
  33. (add-hook 'prog-mode-hook #'abbrev-mode)
  34. (add-hook 'text-mode-hook #'abbrev-mode)
  35. (add-hook 'conf-mode-hook #'abbrev-mode)
  36. (provide 'kkk-abbrev)
  37. ;;; kkk-abbrev.el ends here