We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03bffc9 commit bc64776Copy full SHA for bc64776
lisp/php-ide.el
@@ -149,6 +149,8 @@
149
:type 'string
150
:safe #'stringp)
151
152
+(defvar php-ide-mode-hooks nil)
153
+
154
;;;###autoload
155
(define-minor-mode php-ide-mode
156
"Minor mode for integrate IDE-like tools."
@@ -161,6 +163,7 @@
161
163
ide-features
162
164
(mapconcat (lambda (feature) (concat "'" (symbol-name feature)))
165
(php-ide--avilable-features) ", ")))
166
+ (run-hooks 'php-ide-mode-hooks)
167
(cl-loop for feature in ide-features
168
for ide-plist = (cdr-safe (assq feature php-ide-feature-alist))
169
do (if (null ide-plist)
0 commit comments