You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Hugo Thunnissen f7c2a49b25 Remove dependency on php-project.el
Remove dependency on php-project.el by implementing a standalone version of
`phpinspect--get-project-root`.
3 years ago
COPYING Add license information 3 years ago
README.md Update README code format and to use setq-local 3 years ago
phpinspect-index.bash Truncate "uses_own" index file before filling the index 3 years ago
phpinspect.el Remove dependency on php-project.el 3 years ago

README.md

phpinspect.el

WIP. Documentation is in the making.

Example config:

;;;###autoload
(defun my-php-personal-hook ()
  (setq-local company-minimum-prefix-length 0)
  (setq-local company-tooltip-align-annotations t)
  (setq-local company-idle-delay 0.1)
  (setq-local company-backends '(phpinspect-company-backend))

  ;; Shortcut to add use statements for classes you use.
  (define-key php-mode-map (kbd "C-c u") 'phpinspect-fix-uses-interactive)

  ;; Shortcuts to quickly search/open files of PHP classes.
  (global-set-key (kbd "C-c a") 'phpinspect-find-class-file)
  (global-set-key (kbd "C-c c") 'phpinspect-find-own-class-file)

  (phpinspect-mode))

(add-hook 'php-mode-hook #'my-php-personal-hook)