Linux

SuperCat 找不到配置

  • April 2, 2019

最近我下載了 SuperCat,但我無法讓它工作。總有一條消息:

can't find a config file

雖然我已經在~/.spcrc/spcrc.

有誰知道發生了什麼?

您的配置文件的名稱不完整。缺少關聯的文件類型。

這是https://www.linuxjournal.com/node/1005732的摘錄

所有為文本著色的規則都儲存在名稱格式為 spcrc-ext 的文件中,其中“ext”是文件類型。這些文件儲存在配置的“系統目錄”或您的私有 ~/.spcrc 目錄中。例如,spcrc-c 中 C 原始碼文件的規則可能如下所示:

#  HTML COLOR NAME   COL A N T STRING or REGULAR EXPRESSION
#################### ### # # # ################################################################
Red                  red b     ([a-zA-Z][a-zA-Z0-9_]*)[[:space:]]*\(
Brown                yel b     (while|for|if|switch|main|return)[[:space:]]*\(
Brown                yel b     (else)
Cyan                 cya b     [[:space:]]*(include)
Green                grn       (do)[[:space:]]*\{
Cyan                 cya       (case|return|default)
Green                grn       (break|continue)[[:space:]]*;
Magenta              mag       (int|char|short|float|double|long|unsigned)[[:space:]]
Blue                 blu b     [^[:alnum:]_]([[:digit:]]+)
Brown                yel       "(.*)"
Brown                yel       <(.*)>
Magenta              mag     c :;

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