diff -rupN linkit.orig/linkit.admin.inc linkit.new/linkit.admin.inc
--- linkit.orig/linkit.admin.inc	2010-10-24 14:58:40.000000000 +0200
+++ linkit.new/linkit.admin.inc	2010-11-16 09:06:03.135018000 +0100
@@ -9,6 +9,7 @@
 function linkit_admin_settings() {
   
   $settings = variable_get('linkit_node', array('display_settings' => array(), 'content_types' => array()));
+  $termsettings = variable_get('linkit_term', array('display_settings' => array()));
 
   $node_display_settings = array(
     'nid' => t('Display node id (nid)'),
@@ -19,6 +20,9 @@ function linkit_admin_settings() {
     'changed' => t('Display node changed time'),
     'show_unpublished' => t('Show unpublished nodes in the result'),
   );
+  $term_display_settings = array(
+    'pathalias' => t('Display the path alias of the term'),
+  );
 
   if(module_exists('book')) {
     $node_display_settings += array('show_books' => t('Display the book a node belong to'));
@@ -48,5 +52,21 @@ function linkit_admin_settings() {
     '#description' => t('If none is checked, all content types will be present in the search result.'),
   );
 
+  $form['linkit_term'] = array(
+    '#type' => 'fieldset',
+    '#title' => t('Taxonomy term settings'),
+    '#collapsible' => TRUE,
+    '#collapsed' => FALSE,
+    '#description' => t('Linkit term settings'),
+    '#tree' => TRUE,
+  );
+
+  $form['linkit_term']['display_settings']  = array(
+    '#title' => t('Information to display in the autocomplete field'),
+    '#type' => 'checkboxes',
+    '#options' => $term_display_settings,
+    '#default_value' => $termsettings['display_settings'],
+  );
+
   return system_settings_form($form);
 }
\ No newline at end of file
diff -rupN linkit.orig/plugins/linkit_taxonomy/linkit_taxonomy.module linkit.new/plugins/linkit_taxonomy/linkit_taxonomy.module
--- linkit.orig/plugins/linkit_taxonomy/linkit_taxonomy.module	2010-08-27 18:56:03.000000000 +0200
+++ linkit.new/plugins/linkit_taxonomy/linkit_taxonomy.module	2010-11-16 09:06:13.952881000 +0100
@@ -12,17 +12,21 @@
  */
 function linkit_taxonomy_linkit_load_plugins($string) {
   $matches = array();
-  
+  $settings = variable_get('linkit_term', array('display_settings' => array()));
   // Get terms
   $result = db_query_range(db_rewrite_sql("SELECT t.name, t.tid FROM {term_data} t WHERE LOWER(t.name) LIKE LOWER('%%%s%%')", 't', 'tid'), $string, 0, 10);
   while ($term = db_fetch_object($result)) {
-    $matches['taxonomy'][] = array(
+    $matches['taxonomy'][$i] = array(
       'title' => $term->name,
       'path' => 'internal:taxonomy/term/' . $term->tid,
       'information' => array(
         'type' => 'Taxonomy',
       ),
     );
+    //Add the taxonomy path
+    if ($settings['display_settings']['pathalias']) {
+      $matches['taxonomy'][$i]['information']['path'] = url('taxonomy/term/'.$term->tid);
+    } 
   }
   return  $matches;
 }
