Use one plugin function inside another

Is there a way to use a function in one plugin that has be defined in another plugin? I want to use the csv() function defined in https://github.com/texnixe/kirby-csv-handler.

It worked locally to just call the function with no use or anything, but on my dev server the function was undefined. I tried to load the other plugin first with kirby()->plugin('kirby-csv-handler') but got same error.

Even if you call it in a template instead of in another plugin?

Interesting—you’re right, it’s a Call to undefined function csv() even in a site/template.

EDIT: My bad. Looks like I messed up the submodules again. Thank you @texnixe!