C# および/または ASP.Net の Nano 構文強調表示

C# および/または ASP.Net の Nano 構文強調表示

C# や ASP.Net の構文強調表示を含む nanorc ファイルを持っている (または、その方向を指示できる) 人はいますか?

答え1

Javaの例を使用してhttp://wiki.linuxhelp.net/index.php/Nano_Syntax_Highlighting次のような内容を ~/.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 " +$"

答え2

関連情報