您好我需要包装一个函数,实现这个的最佳实践是什么?这是我目前正在进行的工作:
<h1 class="white hero-text">
<span class="thin">ALL THIS TEXT IS</span>
<br>
<span class="bold striked">A TEST</span>
</h1>
在这种情况下,我正在包裹(defun my-counsel-projectile-find-file (&optional arg)
"Jump to a project's file using completion.
Wraps `counsel-projectile-find-file' to be compatible with `puspose-mode'"
(interactive "P")
(let ((purpose--active-p nil))
(counsel-projectile-find-file arg))
)
功能。