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