gpt4 book ai didi

function - Emacs:函数中的通用参数 (C-u)

转载 作者:行者123 更新时间:2023-12-02 18:26:54 27 4
gpt4 key购买 nike

我想在函数(例如,正则表达式)中使用 C-u,其中使用 C-u 调用它会产生不同的效果。我怎样才能在 Emacs 中做到这一点?该文档没有展示如何使用 Emacs Lisp 执行此操作。

(defun test ()
(interactive)
(align-regexp)) ; I would like to add the C-u prefix to this.

最佳答案

(defun my/test ()
(interactive)
(let ((current-prefix-arg 4)) ;; emulate C-u
(call-interactively 'align-regexp) ;; invoke align-regexp interactively
)
)

希望有帮助。

关于function - Emacs:函数中的通用参数 (C-u),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12827887/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com