2
我創造我的主要模式的一些按鈕有:如何跳轉Emacs中的按鈕?
(insert-text-button "Start" :type 'start-btn)
...
(insert-text-button "Button2" :type 'b2-btn)
我要跳轉到下一個和prev。光標位置的按鈕。
我不知道如何檢測按鈕的位置。給我一個提示。
(defun jump-to-next-button()
"Jump to the next text button from current position."
(interactive)
;; magic
)