From 6aeaa171dc1ca43392f53cbd02097f76e1b1c5a0 Mon Sep 17 00:00:00 2001 From: David Moc Date: Sun, 31 May 2026 03:47:04 +0200 Subject: Hardened API, tetris, MD-View --- config/filebrowser_plugin.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 config/filebrowser_plugin.c (limited to 'config/filebrowser_plugin.c') diff --git a/config/filebrowser_plugin.c b/config/filebrowser_plugin.c new file mode 100644 index 0000000..fb92cef --- /dev/null +++ b/config/filebrowser_plugin.c @@ -0,0 +1,20 @@ +/* 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 -- cgit v1.2.3