Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 line
2.3 KiB

4 年之前
  1. ;;; key-chord-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "key-chord" "key-chord.el" (0 0 0 0))
  7. ;;; Generated autoloads from key-chord.el
  8. (autoload 'key-chord-mode "key-chord" "\
  9. Toggle key chord mode.
  10. With positive ARG enable the mode. With zero or negative arg disable the mode.
  11. A key chord is two keys that are pressed simultaneously, or one key quickly
  12. pressed twice.
  13. See functions `key-chord-define-global', `key-chord-define-local', and
  14. `key-chord-define' and variables `key-chord-two-keys-delay' and
  15. `key-chord-one-key-delay'.
  16. \(fn ARG)" t nil)
  17. (autoload 'key-chord-define-global "key-chord" "\
  18. Define a key-chord of the two keys in KEYS starting a COMMAND.
  19. KEYS can be a string or a vector of two elements. Currently only elements
  20. that corresponds to ascii codes in the range 32 to 126 can be used.
  21. COMMAND can be an interactive function, a string, or nil.
  22. If COMMAND is nil, the key-chord is removed.
  23. Note that KEYS defined locally in the current buffer will have precedence.
  24. \(fn KEYS COMMAND)" t nil)
  25. (autoload 'key-chord-define-local "key-chord" "\
  26. Locally define a key-chord of the two keys in KEYS starting a COMMAND.
  27. KEYS can be a string or a vector of two elements. Currently only elements
  28. that corresponds to ascii codes in the range 32 to 126 can be used.
  29. COMMAND can be an interactive function, a string, or nil.
  30. If COMMAND is nil, the key-chord is removed.
  31. The binding goes in the current buffer's local map,
  32. which in most cases is shared with all other buffers in the same major mode.
  33. \(fn KEYS COMMAND)" t nil)
  34. (autoload 'key-chord-define "key-chord" "\
  35. Define in KEYMAP, a key-chord of the two keys in KEYS starting a COMMAND.
  36. KEYS can be a string or a vector of two elements. Currently only elements
  37. that corresponds to ascii codes in the range 32 to 126 can be used.
  38. COMMAND can be an interactive function, a string, or nil.
  39. If COMMAND is nil, the key-chord is removed.
  40. \(fn KEYMAP KEYS COMMAND)" nil nil)
  41. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "key-chord" '("key-chord-")))
  42. ;;;***
  43. ;; Local Variables:
  44. ;; version-control: never
  45. ;; no-byte-compile: t
  46. ;; no-update-autoloads: t
  47. ;; coding: utf-8
  48. ;; End:
  49. ;;; key-chord-autoloads.el ends here