We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cf0064 commit da67cceCopy full SHA for da67cce
phpactor.el
@@ -114,6 +114,15 @@
114
(setq phpactor-history-ring (make-ring phpactor-history-size)))
115
(ring-insert phpactor-history-ring (cons name entry)))
116
117
+(defun phpactor-config:dump ()
118
+ "Execute Phpactor `config:dump' sub command."
119
+ (interactive)
120
+ (let ((default-directory (phpactor-get-working-dir)))
121
+ (funcall
122
+ (if (called-interactively-p 'interactive)
123
+ #'shell-command
124
+ #'shell-command-to-string)
125
+ (phpactor--make-command-string "config:dump"))))
126
127
;; Phpactor RPC
128
(defun phpactor--rpc (action arguments)
0 commit comments