C# 및/또는 ASP에 대한 Nano 구문 강조. 그물

C# 및/또는 ASP에 대한 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

관련 정보