is gedit not gEdit plues it is the default editor, not emacs ;-) (Yes, i
2001-07-16 Chema Celorio <chema@celorio.com> * default-application-properties.c (possible_editors): is gedit not gEdit plues it is the default editor, not emacs ;-) (Yes, i MAY be a little biased here)
This commit is contained in:
parent
c073f5c89d
commit
52934e2455
2 changed files with 21 additions and 15 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2001-07-16 Chema Celorio <chema@celorio.com>
|
||||||
|
|
||||||
|
* default-application-properties.c (possible_editors): is gedit not gEdit
|
||||||
|
plues it is the default editor, not emacs ;-) (Yes, i MAY be a little biased
|
||||||
|
here)
|
||||||
|
|
||||||
2001-07-16 Richard Hestilow <hestilow@ximian.com>
|
2001-07-16 Richard Hestilow <hestilow@ximian.com>
|
||||||
|
|
||||||
* Makefile.am: Fix typo in install-data-local.
|
* Makefile.am: Fix typo in install-data-local.
|
||||||
|
|
|
@ -52,20 +52,20 @@ TerminalDescription tcurrent_info = { NULL };
|
||||||
|
|
||||||
EditorDescription possible_editors[] =
|
EditorDescription possible_editors[] =
|
||||||
{
|
{
|
||||||
{ "Emacs", "emacs", FALSE, "executable", TRUE },
|
{ "gedit", "gedit", FALSE, "executable", FALSE },
|
||||||
{ "XEmacs", "xemacs", FALSE, "executable", TRUE },
|
{ "Emacs", "emacs", FALSE, "executable", TRUE },
|
||||||
{ "vi", "vi", TRUE, "executable", TRUE },
|
{ "XEmacs", "xemacs", FALSE, "executable", TRUE },
|
||||||
{ "Go", "go", FALSE, "executable", FALSE },
|
{ "vi", "vi", TRUE, "executable", TRUE },
|
||||||
{ "gEdit", "gedit", FALSE, "executable", FALSE },
|
{ "Go", "go", FALSE, "executable", FALSE },
|
||||||
{ "GWP", "gwp", FALSE, "executable", FALSE },
|
{ "GWP", "gwp", FALSE, "executable", FALSE },
|
||||||
{ "Jed", "jed", TRUE, "executable", TRUE },
|
{ "Jed", "jed", TRUE, "executable", TRUE },
|
||||||
{ "Joe", "joe", TRUE, "executable", TRUE },
|
{ "Joe", "joe", TRUE, "executable", TRUE },
|
||||||
{ "Pico", "pico", TRUE, "executable", TRUE },
|
{ "Pico", "pico", TRUE, "executable", TRUE },
|
||||||
{ "vim", "vim", TRUE, "executable", TRUE },
|
{ "vim", "vim", TRUE, "executable", TRUE },
|
||||||
{ "gvim", "gvim", FALSE, "executable", TRUE },
|
{ "gvim", "gvim", FALSE, "executable", TRUE },
|
||||||
{ "ed", "ed", TRUE, "executable", FALSE },
|
{ "ed", "ed", TRUE, "executable", FALSE },
|
||||||
{ "GMC/CoolEdit", "gmc -e", FALSE, "mc-internal", FALSE },
|
{ "GMC/CoolEdit", "gmc -e", FALSE, "mc-internal", FALSE },
|
||||||
{ "Nedit", "nedit", FALSE, "executable", FALSE }
|
{ "Nedit", "nedit", FALSE, "executable", FALSE }
|
||||||
};
|
};
|
||||||
|
|
||||||
BrowserDescription possible_browsers[] =
|
BrowserDescription possible_browsers[] =
|
||||||
|
@ -129,8 +129,8 @@ edit_read(void)
|
||||||
eoriginal_info.execution_type = gnome_config_get_string("/editor/Editor/EDITOR_TYPE");
|
eoriginal_info.execution_type = gnome_config_get_string("/editor/Editor/EDITOR_TYPE");
|
||||||
eoriginal_info.accepts_lineno = gnome_config_get_bool_with_default("/editor/Editor/ACCEPTS_LINE_NO", NULL);
|
eoriginal_info.accepts_lineno = gnome_config_get_bool_with_default("/editor/Editor/ACCEPTS_LINE_NO", NULL);
|
||||||
|
|
||||||
ecurrent_info.name = gnome_config_get_string("/editor/Editor/EDITNAME=Emacs");
|
ecurrent_info.name = gnome_config_get_string("/editor/Editor/EDITNAME=gedit");
|
||||||
ecurrent_info.executable_name = gnome_config_get_string("/editor/Editor/EDITOR=emacs");
|
ecurrent_info.executable_name = gnome_config_get_string("/editor/Editor/EDITOR=gedit");
|
||||||
ecurrent_info.needs_term = gnome_config_get_bool_with_default("/editor/Editor/NEEDS_TERM=FALSE", NULL);
|
ecurrent_info.needs_term = gnome_config_get_bool_with_default("/editor/Editor/NEEDS_TERM=FALSE", NULL);
|
||||||
ecurrent_info.execution_type = gnome_config_get_string("/editor/Editor/EDITOR_TYPE=executable");
|
ecurrent_info.execution_type = gnome_config_get_string("/editor/Editor/EDITOR_TYPE=executable");
|
||||||
ecurrent_info.accepts_lineno = gnome_config_get_bool_with_default("/editor/Editor/ACCEPTS_LINE_NO=TRUE", NULL);
|
ecurrent_info.accepts_lineno = gnome_config_get_bool_with_default("/editor/Editor/ACCEPTS_LINE_NO=TRUE", NULL);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue