Kaydet (Commit) cfb71b36 authored tarafından Enrico Tröger's avatar Enrico Tröger

Added keyword "until".


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@864 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 642889e9
......@@ -7,6 +7,7 @@
Reordered command line options alphabetically.
Added new command line option --line to set the initial line for the
first opened file.
* data/filetypes.sh, src/highlighting.c: Added keyword "until".
2006-10-02 Nick Treleaven <nick.treleaven@btinternet.com>
......
......@@ -14,7 +14,7 @@ param=0x009f00;0xffffff;false;false
scalar=0x105090;0xffffff;false;false
[keywords]
primary=break case continue do done elif else esac eval exit export fi for function goto if in integer return set shift then while
primary=break case continue do done elif else esac eval exit export fi for function goto if in integer return set shift then until while
[settings]
......
......@@ -1638,7 +1638,7 @@ static void styleset_sh_init(void)
get_keyfile_hex(config, config_home, "styling", "scalar", "0x105090", "0xffffff", "false", &style_sets[GEANY_FILETYPES_SH].styling[10]);
style_sets[GEANY_FILETYPES_SH].keywords = g_new(gchar*, 2);
get_keyfile_keywords(config, config_home, "keywords", "primary", GEANY_FILETYPES_SH, 0, "break case continue do done elif else esac eval exit export fi for goto if in integer return set shift then while");
get_keyfile_keywords(config, config_home, "keywords", "primary", GEANY_FILETYPES_SH, 0, "break case continue do done elif else esac eval exit export fi for goto if in integer return set shift then until while");
style_sets[GEANY_FILETYPES_SH].keywords[1] = NULL;
get_keyfile_wordchars(config, config_home, GEANY_WORDCHARS,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment