跳过Emacs中的Java方法



我想通过方法跳过我的java文件,例如当我到任何地方时,请执行单个键盘快捷键,以跳到方法的下一个或方法开始。

emacs'与C-M-A和C-M-E的"移动"对C非常有用,并且确实做了我想要的。但是显然在Java中,Defun是整个班级。

偏向障碍:http://www.gnu.org/software/emacs/manual/html_node/emacs/moving-by-defuns.html

我发现我可以胁迫C-M-F和C-M-B来做我想做的事情。他们在任何括号平衡的表达上向前和向后移动。问题在于,他们只有在方法定义的开口或关闭括号之外调用时我要寻找的futcitonation,这极为有限。

带有平衡括号的表达:http://www.delorie.com/gnu/docs/emacs/emacs_282.html

欢迎任何想法!

imenu和spedbar接近您想要的东西。

否则,您可以自己定义它。您可以从这样的东西开始:

(defvar java-function-regexp
  (concat
   "^[ t]*"                                   ; leading white space
   "\(public\|private\|protected\|"        ; some of these 8 keywords
   "abstract\|final\|static\|"
   "synchronized\|native"
   "\|[ tnr]\)*"                          ; or whitespace
   "[a-zA-Z0-9_$]+"                            ; return type
   "[ tnr]*[[]?[]]?"                        ; (could be array)
   "[ tnr]+"                                ; whitespace
   "\([a-zA-Z0-9_$]+\)"                      ; the name we want!
   "[ tnr]*"                                ; optional whitespace
   "("                                         ; open the param list
   "\([ tnr]*"                             ; optional whitespace
   "\<[a-zA-Z0-9_$]+\>"                      ; typename
   "[ tnr]*[[]?[]]?"                        ; (could be array)
   "[ tnr]+"                                ; whitespace
   "\<[a-zA-Z0-9_$]+\>"                      ; variable name
   "[ tnr]*[[]?[]]?"                        ; (could be array)
   "[ tnr]*,?\)*"                          ; opt whitespace and comma
   "[ tnr]*"                                ; optional whitespace
   ")"                                         ; end the param list
))
(defun my:next-java-method()
  (interactive)
  (re-search-forward java-function-regexp nil t)
)
(defun my:prev-java-method()
  (interactive)
  (re-search-backward java-function-regexp nil t)
)

然后将my:next-java-methodmy:prev-java-method绑定到您想要的任何密钥到

相关内容

  • 没有找到相关文章

最新更新