Compare commits

..

No commits in common. "026549eff77b8c17a879d186962ed5907f2211d4" and "36885ac1353b41a13768a174568d8bbdcd8e1232" have entirely different histories.

2 changed files with 4 additions and 14 deletions

1
.gitignore vendored
View File

@ -23,4 +23,3 @@ workspace/
/history /history
/projectile.cache /projectile.cache
/request/ /request/
/smex-items

View File

@ -12,18 +12,9 @@
(use-package php-mode (use-package php-mode
:defer t :defer t
:straight t :straight t
:bind ("C-c d b" . kj/php-doc-block) :hook ((php-mode . (lambda ()
:config (local-set-key (kbd "C-c d b") 'php-doc-block) ;; atajo para docblock
(defun kj/php-doc-block () ))
"Llama a \"php-dock-block\", sin conflicto con \"vs-comment-return-mode\"."
(interactive)
(if (bound-and-true-p vs-comment-return-mode)
(funcall (lambda()
(vs-comment-return-mode -1)
(php-doc-block)
(vs-comment-return-mode 1)))
(php-doc-block)
)
) )
) )