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
/projectile.cache
/request/
/smex-items

View File

@ -12,19 +12,10 @@
(use-package php-mode
:defer t
:straight t
:bind ("C-c d b" . kj/php-doc-block)
:config
(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)
)
)
:hook ((php-mode . (lambda ()
(local-set-key (kbd "C-c d b") 'php-doc-block) ;; atajo para docblock
))
)
)
(use-package php-doc-block