From 36125821600c79b9ad987deebc0c74f7f3e06a3a Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Thu, 4 Feb 2016 01:33:21 +0900 Subject: [PATCH] Add new __fisher_plugin_source function. Third party plugins can override this function to modify the install mechanism and support alternative install methods. --- functions/__fisher_plugin_source.fish | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 functions/__fisher_plugin_source.fish diff --git a/functions/__fisher_plugin_source.fish b/functions/__fisher_plugin_source.fish new file mode 100644 index 0000000..aae12e2 --- /dev/null +++ b/functions/__fisher_plugin_source.fish @@ -0,0 +1,3 @@ +function __fisher_plugin_source -a file + source "$file" ^ /dev/null +end