Reenabled completion
parent
87691de358
commit
c92c2ae484
|
@ -48,6 +48,7 @@ moo/mooedit/gtksourceview/upstream/Makefile
|
|||
moo/mooedit/plugins/Makefile
|
||||
moo/mooedit/plugins/activestrings/Makefile
|
||||
moo/mooedit/plugins/fileselector/Makefile
|
||||
moo/mooedit/plugins/completion/Makefile
|
||||
moo/mooapp/Makefile
|
||||
moo/mooapp/smclient/Makefile
|
||||
moo/moopython/Makefile
|
||||
|
|
2
moo.mprj
2
moo.mprj
|
@ -34,7 +34,7 @@
|
|||
</configure>
|
||||
</optimized>
|
||||
</configurations>
|
||||
<file_selector_dir>/home/muntyan/projects/moo/moo/mooedit/glade/</file_selector_dir>
|
||||
<file_selector_dir>/home/muntyan/projects/gap/gap4r4/src/</file_selector_dir>
|
||||
<run>
|
||||
<args>--g-fatal-warnings --new-app --mode=project</args>
|
||||
<exe>medit/medit</exe>
|
||||
|
|
|
@ -56,6 +56,8 @@ mooedit_sources = \
|
|||
moocommand-private.h \
|
||||
moocommand-script.c \
|
||||
moocommand-script.h \
|
||||
moocompletionsimple.c \
|
||||
moocompletionsimple.h \
|
||||
mooeditaction.c \
|
||||
mooeditaction-factory.c \
|
||||
mooeditaction-factory.h \
|
||||
|
@ -103,16 +105,20 @@ mooedit_sources = \
|
|||
mooplugin-loader.c \
|
||||
moopluginprefs-glade.h \
|
||||
mooprint-glade.h \
|
||||
mootext-private.h \
|
||||
mootextbox.c \
|
||||
mootextbox.h \
|
||||
mootextbtree.c \
|
||||
mootextbtree.h \
|
||||
mootextbuffer.c \
|
||||
mootextcompletion.c \
|
||||
mootextcompletion.h \
|
||||
mootextfind.c \
|
||||
mootextfind-glade.h \
|
||||
mootextfind.h \
|
||||
mootextgotoline-glade.h \
|
||||
mootext-private.h \
|
||||
mootextpopup.c \
|
||||
mootextpopup.h \
|
||||
mootextsearch.c \
|
||||
mootextsearch-private.h \
|
||||
mootextstylescheme.c \
|
||||
|
|
|
@ -912,8 +912,8 @@ moo_plugin_init_builtin (void)
|
|||
#if GTK_CHECK_VERSION(2,6,0)
|
||||
_moo_file_selector_plugin_init ();
|
||||
#endif
|
||||
#if 0
|
||||
_moo_completion_plugin_init ();
|
||||
#if 0
|
||||
_moo_active_strings_plugin_init ();
|
||||
#endif
|
||||
}
|
||||
|
|
|
@ -2,8 +2,8 @@ DIST_SUBDIRS = activestrings fileselector
|
|||
|
||||
# subdirs = activestrings completion
|
||||
# libs = activestrings/libastrings.la completion/libcompletion.la
|
||||
subdirs =
|
||||
libs =
|
||||
subdirs = completion
|
||||
libs = completion/libcompletion.la
|
||||
if GTK_2_6
|
||||
subdirs += fileselector
|
||||
libs += fileselector/libfileselector.la
|
||||
|
|
|
@ -130,6 +130,7 @@ cmpl_plugin_init (CmplPlugin *plugin)
|
|||
"tooltip", _("Complete Word"),
|
||||
"accel", "<Ctrl>space",
|
||||
"closure-callback", completion_callback,
|
||||
"condition::sensitive", "has-open-document",
|
||||
NULL);
|
||||
|
||||
if (xml)
|
||||
|
|
|
@ -25,6 +25,7 @@ VOID:ENUM
|
|||
VOID:ENUM,UINT
|
||||
VOID:INT
|
||||
VOID:OBJECT
|
||||
VOID:OBJECT,BOXED
|
||||
VOID:OBJECT,BOXED,BOXED
|
||||
VOID:OBJECT,OBJECT
|
||||
VOID:POINTER
|
||||
|
@ -33,6 +34,7 @@ VOID:POINTER,OBJECT
|
|||
VOID:POINTER,POINTER
|
||||
VOID:STRING
|
||||
VOID:STRING,INT
|
||||
VOID:STRING,OBJECT
|
||||
VOID:UINT
|
||||
VOID:UINT,BOXED
|
||||
VOID:UINT,POINTER
|
||||
|
|
Loading…
Reference in New Issue