show shortcodes in editor

Having stumbled across this (really late), here is the answer as posted on the wordpress forum by MichaelH:

<?php
global $shortcode_tags;
echo "<pre>"; print_r($shortcode_tags); echo "</pre>";
?>

Putting it here so anyone searching here might find it.