From ed82c3975d48b500f1c7a8187a8a0a635009d35c Mon Sep 17 00:00:00 2001 From: takeokunn Date: Tue, 28 May 2019 22:31:45 +0900 Subject: [PATCH] Add page-delimiter custom variable. Once this variable is defined, you can use forward-page / back-page to move smoothly between the previous and next declaration statements. --- php-mode.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/php-mode.el b/php-mode.el index 09d762b7..17e4e9f5 100644 --- a/php-mode.el +++ b/php-mode.el @@ -201,6 +201,12 @@ of constants when set." :tag "PHP Mode Lineup Cascaded Calls" :type 'boolean) +(defcustom php-mode-page-delimiter + (eval-when-compile (rx symbol-start (or "namespace" "function" "class" "trait" "interface") symbol-end)) + "Regexp describing line-beginnings that PHP declaration statements." + :group 'php-mode + :tag "PHP Mode Page Delimiter" + :type 'regexp) (define-obsolete-variable-alias 'php-extra-constants 'php-mode-extra-constants "1.20.0") (defcustom php-mode-extra-constants '() @@ -1067,6 +1073,7 @@ After setting the stylevars run hooks according to STYLENAME (: "/*"))) (* (syntax whitespace))))) (setq-local comment-end "") + (setq-local page-delimiter php-mode-page-delimiter) (setq-local font-lock-string-face 'php-string) (setq-local font-lock-keyword-face 'php-keyword)