Reenabled completion
parent
2b0a1ded3d
commit
0e077cd7c6
|
@ -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/mooutils/</file_selector_dir>
|
||||
<file_selector_dir>/home/muntyan/projects/moo/moo/</file_selector_dir>
|
||||
<run>
|
||||
<args>--g-fatal-warnings --new-app --mode=project</args>
|
||||
<exe>medit/medit</exe>
|
||||
|
|
|
@ -55,6 +55,7 @@ completion_sources = \
|
|||
mooedit_sources = \
|
||||
$(mooedit_include_headers) \
|
||||
$(moocommand_stuff) \
|
||||
$(completion_sources) \
|
||||
medit-ui.h \
|
||||
moocmdview.c \
|
||||
moocommand.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
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
DIST_SUBDIRS = activestrings fileselector
|
||||
DIST_SUBDIRS = activestrings fileselector completion
|
||||
|
||||
# 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
|
||||
|
|
Loading…
Reference in New Issue