Editors

C# 和/或 ASP 的 Nano 語法高亮顯示。網

  • May 20, 2011

有沒有人得到(或可以指向)包含 C# 和/或 ASP.Net 語法突出顯示的 nanorc 文件?

使用http://wiki.linuxhelp.net/index.php/Nano_Syntax_Highlighting中的 Java 範例,您可以嘗試在 ~/.nanorc 中添加如下內容:

syntax "C# source" "\.cs$"
color green "\<(bool|byte|sbyte|char|decimal|double|float|int|uint|long|ulong|new|object|short|ushort|string|base|this|void)\>"
color red "\<(as|break|case|catch|checked|continue|default|do|else|finally|fixed|for|foreach|goto|if|is|lock|return|switch|throw|try|unchecked|while)\>"
color cyan "\<(abstract|class|const|delegate|enum|event|explicit|extern|implicit|in|internal|interface|namespace|operator|out|override|params|private|protected|public|readonly|ref|sealed|sizeof|static|struct|typeof|using|virtual|volatile)\>"
color red ""[^\"]*""
color yellow "\<(true|false|null)\>"
color blue "//.*"
color blue start="/\*" end="\*/"
color brightblue start="/\*\*" end="\*/"
color brightgreen,green " +$"

引用自:https://unix.stackexchange.com/questions/454