/* Compatibility shim. The file browser is now built into the editor core and registered during startup as these commands: - file-browser - file-browser-here - file-browser-refresh - file-browser-open - file-browser-preview - file-browser-toggle-preview Old configs that still include this file can keep doing so safely. */ #ifndef ECEX_FILEBROWSER_PLUGIN_C #define ECEX_FILEBROWSER_PLUGIN_C #include "ecex.h" static int ecex_filebrowser_plugin_init(ecex_t *ed) { (void)ed; return 0; } #endif