blob: fb92cef977fb8a17b0bb8deab80fd1c8eb210ef9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|