about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiImport.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/LeiImport.pm')
-rw-r--r--lib/PublicInbox/LeiImport.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/PublicInbox/LeiImport.pm b/lib/PublicInbox/LeiImport.pm
index b9865829..2d91e4c4 100644
--- a/lib/PublicInbox/LeiImport.pm
+++ b/lib/PublicInbox/LeiImport.pm
@@ -117,6 +117,8 @@ sub _complete_import {
         my ($lei, @argv) = @_;
         my ($re, $cur, $match_cb) = $lei->complete_url_prepare(\@argv);
         my @k = $lei->url_folder_cache->keys($argv[-1] // undef, 1);
+        my @L = eval { $lei->_lei_store->search->all_terms('L') };
+        push(@k, map { "+L:$_" } @L);
         my @m = map { $match_cb->($_) } @k;
         my %f = map { $_ => 1 } (@m ? @m : @k);
         if (my $lms = $lei->lms) {