# HG changeset patch # User Chris Cannam # Date 1394011759 0 # Node ID 629faeec02294d88234b2866b3f5c622e2499196 # Parent 34ff6b72b0f4be97ac7a797eddec6287c10d828d Add -L short option as synonym for --list-full diff -r 34ff6b72b0f4 -r 629faeec0229 host/vamp-simple-host.cpp --- a/host/vamp-simple-host.cpp Fri Sep 13 14:58:41 2013 +0100 +++ b/host/vamp-simple-host.cpp Wed Mar 05 09:29:19 2014 +0000 @@ -114,6 +114,7 @@ " " << name << " --list\n\n" " -- List the plugin libraries and Vamp plugins in the library search path\n" " in a verbose human-readable format.\n\n" + " " << name << " -L\n" " " << name << " --list-full\n\n" " -- List all data reported by all the Vamp plugins in the library search\n" " path in a very verbose human-readable format.\n\n" @@ -161,7 +162,7 @@ enumeratePlugins(PluginInformation); return 0; - } else if (!strcmp(argv[1], "--list-full")) { + } else if (!strcmp(argv[1], "-L") || !strcmp(argv[1], "--list-full")) { enumeratePlugins(PluginInformationDetailed); return 0;