From a60a66ca2e37e713d736937dc83cc160f33f36e8 Mon Sep 17 00:00:00 2001
From: Tom Willemse <tom@ryuslash.org>
Date: Tue, 11 Feb 2025 15:55:34 -0800
Subject: [PATCH] =?UTF-8?q?oni-php:=20Add=20function=20that=20makes=20?=
 =?UTF-8?q?=E2=80=98comment-dwim=E2=80=99=20add=20doc=20comments?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This checks to see if point is right before a function and if so adds a
documentation comment. Otherwise it calls to the original ‘comment-dwim’ to do
the right thing for that particular place.
---
 oni-php/oni-php.el | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/oni-php/oni-php.el b/oni-php/oni-php.el
index d90251e..1eebc29 100644
--- a/oni-php/oni-php.el
+++ b/oni-php/oni-php.el
@@ -4,7 +4,7 @@
 
 ;; Author: Tom Willemse <tom@ryuslash.org>
 ;; Keywords: local
-;; Version: 2025.0124.124542
+;; Version: 2025.0210.125238
 ;; Package-Requires: (php-mode oni-yasnippet oni-flycheck oni-company oni-hydra ggtags fic-mode company-php)
 
 ;; This program is free software; you can redistribute it and/or modify
@@ -111,9 +111,32 @@ Do the insert N times."
       (self-insert-command N)
     (dotimes (_ N) (insert "->"))))
 
+(defun oni-php-doc-comment ()
+  "Insert a PHP documentation comment at point."
+  (interactive)
+  (let ((start (point)))
+    (insert "/**\n * ")
+    (let ((insert-marker (point-marker)))
+      (insert "\n */")
+      (indent-region start (point))
+      (goto-char insert-marker))))
+
+(defun oni-php-comment-dwim (func &rest args)
+  "See if a PHP documentation comment should be added and add it.
+Otherwise call FUNC with ARGS. This is meant as advice around
+‘comment-dwim’ to make it smarter for PHP code."
+  (if (and (derived-mode-p 'php-mode)
+           (looking-back (rx blank) (line-beginning-position))
+           (looking-at (rx (minimal-match (zero-or-more (any whitespace "\n")))
+                           (regexp php-beginning-of-defun-regexp))))
+      (oni-php-doc-comment)
+    (apply func args)))
+
 (defhydra php-mode-hydra (:color blue)
   ("a" align-current "Align current selection"))
 
+(advice-add 'comment-dwim :around #'oni-php-comment-dwim)
+
 (add-hook 'php-mode-hook #'oni-php--set-require-final-newline)
 (add-hook 'php-mode-hook #'oni-php--whitespace-mode)
 (add-hook 'php-mode-hook 'company-mode)