Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. ;;; key-chord-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (or (file-name-directory #$) (car load-path)))
  5. ;;;### (autoloads nil "key-chord" "key-chord.el" (21629 53424 799705
  6. ;;;;;; 376000))
  7. ;;; Generated autoloads from key-chord.el
  8.  
  9. (autoload 'key-chord-mode "key-chord" "\
  10. Toggle key chord mode.
  11. With positive ARG enable the mode. With zero or negative arg disable the mode.
  12. A key chord is two keys that are pressed simultaneously, or one key quickly
  13. pressed twice.
  14.  
  15. See functions `key-chord-define-global', `key-chord-define-local', and
  16. `key-chord-define' and variables `key-chord-two-keys-delay' and
  17. `key-chord-one-key-delay'.
  18.  
  19. \(fn ARG)" t nil)
  20.  
  21. (autoload 'key-chord-define-global "key-chord" "\
  22. Define a key-chord of the two keys in KEYS starting a COMMAND.
  23.  
  24. KEYS can be a string or a vector of two elements. Currently only elements
  25. that corresponds to ascii codes in the range 32 to 126 can be used.
  26.  
  27. COMMAND can be an interactive function, a string, or nil.
  28. If COMMAND is nil, the key-chord is removed.
  29.  
  30. Note that KEYS defined locally in the current buffer will have precedence.
  31.  
  32. \(fn KEYS COMMAND)" t nil)
  33.  
  34. (autoload 'key-chord-define-local "key-chord" "\
  35. Locally define a key-chord of the two keys in KEYS starting a COMMAND.
  36.  
  37. KEYS can be a string or a vector of two elements. Currently only elements
  38. that corresponds to ascii codes in the range 32 to 126 can be used.
  39.  
  40. COMMAND can be an interactive function, a string, or nil.
  41. If COMMAND is nil, the key-chord is removed.
  42.  
  43. The binding goes in the current buffer's local map,
  44. which in most cases is shared with all other buffers in the same major mode.
  45.  
  46. \(fn KEYS COMMAND)" t nil)
  47.  
  48. (autoload 'key-chord-define "key-chord" "\
  49. Define in KEYMAP, a key-chord of the two keys in KEYS starting a COMMAND.
  50.  
  51. KEYS can be a string or a vector of two elements. Currently only elements
  52. that corresponds to ascii codes in the range 32 to 126 can be used.
  53.  
  54. COMMAND can be an interactive function, a string, or nil.
  55. If COMMAND is nil, the key-chord is removed.
  56.  
  57. \(fn KEYMAP KEYS COMMAND)" nil nil)
  58.  
  59. ;;;***
  60. ;; Local Variables:
  61. ;; version-control: never
  62. ;; no-byte-compile: t
  63. ;; no-update-autoloads: t
  64. ;; End:
  65. ;;; key-chord-autoloads.el ends here
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement