diff --git plugins/views_plugin_display.inc plugins/views_plugin_display.inc
index 1be10d3..b5ab2cd 100644
--- plugins/views_plugin_display.inc
+++ plugins/views_plugin_display.inc
@@ -1341,6 +1341,11 @@ class views_plugin_display extends views_plugin {
           }
         }
 
+        $this->view->init_handlers();
+        if ($this->uses_exposed()) {
+          $funcs[] = $this->option_link(t('Exposed form output'), 'analyze-theme-exposed-form') . ': ' . $this->format_themes(views_theme_functions('views-exposed-form', $this->view, $this->display), array());
+        }
+
         $plugin = $this->get_plugin();
         if ($plugin) {
           $funcs[] = $this->option_link(t('Style output'), 'analyze-theme-style') . ': ' . $this->format_themes($plugin->theme_functions(), $plugin->additional_theme_functions());
@@ -1530,6 +1535,21 @@ class views_plugin_display extends views_plugin {
         );
         $form_state['ok_button'] = TRUE;
         break;
+      case 'analyze-theme-exposed-form':
+        $form['#title'] .= t('Theming information (exposed form)');
+        $output = '<p>' . t('Back to !info.', array('!info' => $this->option_link(t('theming information'), 'analyze-theme'))) . '</p>';
+
+        $output .= '<p>' . t('This is the default theme template used for this exposed form.') . '</p>';
+
+        $output .= '<pre>' . check_plain(file_get_contents(drupal_get_path('module', 'views') . '/theme/views-exposed-form.tpl.php')) . '</pre>';
+
+        $form['analysis'] = array(
+          '#prefix' => '<div class="form-item">',
+          '#suffix' => '</div>',
+          '#value' => $output,
+        );
+        $form_state['ok_button'] = TRUE;
+        break;
 
       case 'exposed_block':
         $form['#title'] .= t('Put the exposed form in a block');
