branch: elpa/drupal-mode
commit f491ac72b988cc92c214dda314dcf22ef626aecc
Author: Arne Jørgensen <[email protected]>
Commit: Arne Jørgensen <[email protected]>
Redefined key bindings.
---
drupal-mode.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drupal-mode.el b/drupal-mode.el
index 87e3fdec6f..94d7e3a410 100644
--- a/drupal-mode.el
+++ b/drupal-mode.el
@@ -182,10 +182,10 @@ Include path to the executable if it is not in your
$PATH."
(defvar drupal-mode-map
(let ((map (make-sparse-keymap)))
- (define-key map "\C-cdf" #'drupal-search-documentation)
- (define-key map "\C-cdc" #'drupal-drush-cache-clear)
- (define-key map "\C-cdih" #'drupal-insert-hook)
- (define-key map "\C-cdif" #'drupal-insert-function)
+ (define-key map "\C-c\C-v\C-d" #'drupal-search-documentation)
+ (define-key map "\C-c\C-v\C-c" #'drupal-drush-cache-clear)
+ (define-key map "\C-c\C-v\C-h" #'drupal-insert-hook)
+ (define-key map "\C-c\C-v\C-f" #'drupal-insert-function)
map)
"Keymap for `drupal-mode'")