Elisp interactive function name

前端 未结 2 1351
南笙
南笙 2021-01-23 12:14

I\'m trying to use the interactive function name feature. On emacs lisp manual it says:

‘a’ A function name (i.e., a symbol satisfying fboundp). Existing, Completion, Pr

2条回答
  •  梦毁少年i
    2021-01-23 12:51

    This should do this trick:

    (defun test (abcd)
      (interactive "aTheme name: ")
      (call-interactively abcd))
    

提交回复
热议问题