jdict

command line tool for looking up terms in yomidict dictionaries
git clone anongit@rnpnr.xyz:jdict.git
Log | Files | Refs | Feed | README | LICENSE

config.def.h (647B)


      1 /* See LICENSE for license details. */
      2 
      3 /* dir where unzipped yomidicts are stored */
      4 static char *prefix = "/usr/share/yomidicts";
      5 
      6 /* field separator for output printing */
      7 static s8 fsep = s8("\t");
      8 
      9 /* repl prompt and quit strings */
     10 static char *repl_prompt = "\033[32;1m入力:\033[0m ";
     11 static char *repl_quit = "\n\033[36m(=^ᆺ^)ノ バイバイ~\033[0m";
     12 
     13 /* default yomidicts to search */
     14 Dict default_dict_map[] = {
     15 	/* folder name       display name */
     16 	{.rom = "daijirin",  .name = "【三省堂 スーパー大辞林】"},
     17 	{.rom = "daijisen",  .name = "【大辞泉】"},
     18 	{.rom = "koujien",   .name = "【広辞苑】"},
     19 };