0

使用 cscope 后如何返回到之前的位置,比如在 Emacs 中找到一个函数的定义?因为在了解了一些函数的定义之后,我想继续阅读下面的代码。

4

1 回答 1

1

也许您需要: (ring-insert find-tag-marker-ring (point-marker)) 在调用 cscope 之前。

我有这个:

(defun mmc-find-tag(&optional prefix)
  "union of `find-tag' alternatives. decides upon major-mode"
  (interactive "P")
  (if (and (boundp 'cscope-minor-mode)
           cscope-minor-mode)
  (progn
    (ring-insert find-tag-marker-ring (point-marker))
;; (push-tag-mark)
    (setq cscope-display-cscope-buffer prefix)
    (call-interactively
     (if prefix
         'cscope-find-this-symbol
       'cscope-find-global-definition-no-prompting
       )))
(call-interactively 'find-tag)))

(substitute-key-definition 'find-tag 'mmc-find-tag global-map)
于 2012-08-10T08:48:35.383 回答