2009-11-25 82 views
5

我必須以.bnf格式編輯大量語法文件。 Emacs中有這種模式嗎?Emacs有BNF模式嗎?

我看過CEDET的語義包,看起來它使用了bnf模式,但沒有更多。這個片段是googlable,但語義BNF模式似乎並不存在:

(autoload 'semantic-bnf-mode "semantic-bnf" "Mode for Bovine Normal Form." t) 
(add-to-list 'auto-mode-alist '("\\.bnf$" . semantic-bnf-mode)) 

回答

7

語義BNF模式是爲自己的內部解析器格式。原來的'bnf'這個名字是一個讓人困惑的雙關語。

現有的語義模式,如wisent-grammar-mode和bovine-grammar-mode是CEDET使用的語法,原始的bnf模式相似,並不代表真正的BNF風格語法。

您可能更感興趣的是ebnf2ps,它將ebnf語法(yacc等)轉換爲語法圖表,儘管我自己並沒有使用它。

+1

謝謝埃裏克的清理。我決定嘗試實現一個非常簡單的模式,僅用於語法高亮顯示。我把它放在我的.emacs中,它似乎工作。 (定義泛型模式 'BNF-模式 '( 「#」) 零 '(( 「^ <.*?>」。' 字體鎖變量名面)\t ( 「<.*?>」。「字型-lock-warning-face) (「:: =」。'font-lock-warning-face) (「\ |」。'font-lock-warning-face) ) '(「\\。bnf \\。pybnf \\'「) 無 」BNF突出顯示的主要模式「。) – jmmcd 2009-11-25 22:54:43

3

爲了更具可讀性和可找到答案,jmmcd回答了他自己的問題,內容如下。您可以在emacs幫助> elisp> 23.2.6通用模式中找到更多信息。


「我把這個在我的.emacs和它似乎工作。」

(define-generic-mode 'bnf-mode 
    '("#") 
    nil 
    '(("^<.*?>" . 'font-lock-variable-name-face) 
    ("<.*?>" . 'font-lock-keyword-face) 
    ("::=" . 'font-lock-warning-face) 
    ("\|" . 'font-lock-warning-face)) 
    '("\\.bnf\\.pybnf\\'") 
    nil 
    "Major mode for BNF highlighting.") 
8

謝謝Don。我稍微改進了代碼,這是一個新版本。

(define-generic-mode 'bnf-mode 
() ;; comment char: inapplicable because # must be at start of line 
    nil ;; keywords 
    '(
    ("^#.*" . 'font-lock-comment-face) ;; comments at start of line 
    ("^<.*?>" . 'font-lock-function-name-face) ;; LHS nonterminals 
    ("<.*?>" . 'font-lock-builtin-face) ;; other nonterminals 
    ("::=" . 'font-lock-const-face) ;; "goes-to" symbol 
    ("\|" . 'font-lock-warning-face) ;; "OR" symbol 
    ("\{:\\|:\}" . 'font-lock-keyword-face) ;; special pybnf delimiters 
    ) 
    '("\\.bnf\\'" "\\.pybnf\\'") ;; filename suffixes 
    nil ;; extra function hooks 
    "Major mode for BNF highlighting.")