diff options
Diffstat (limited to 'src/nvim/os/provider.c')
-rw-r--r-- | src/nvim/os/provider.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/nvim/os/provider.c b/src/nvim/os/provider.c index 9bd1c82569..2e42cbb8f2 100644 --- a/src/nvim/os/provider.c +++ b/src/nvim/os/provider.c @@ -36,7 +36,12 @@ static struct feature { "python_execute", "python_execute_file", "python_do_range", - "python_eval") + "python_eval"), + + FEATURE("clipboard", + &p_icpb, + "clipboard_get", + "clipboard_set") }; static Map(cstr_t, uint64_t) *registered_providers = NULL; |