| 
						
						
							
								
							
						
						
					 | 
					 | 
					@ -726,13 +726,15 @@ end
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					local function list_entries(skip_tags, include, exclude)
 | 
					 | 
					 | 
					 | 
					local function list_entries(skip_tags, include, exclude)
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    local entries = search_entries(include, exclude)
 | 
					 | 
					 | 
					 | 
					    local entries = search_entries(include, exclude)
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    for _,entry in ipairs(entries) do
 | 
					 | 
					 | 
					 | 
					    for _,entry in ipairs(entries) do
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        print_columns(entry, get_entry_short_help(entry))
 | 
					 | 
					 | 
					 | 
					        local short_help = get_entry_short_help(entry)
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        if not skip_tags then
 | 
					 | 
					 | 
					 | 
					        if not skip_tags then
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            local tags = set_to_sorted_list(get_entry_tags(entry))
 | 
					 | 
					 | 
					 | 
					            local tags = set_to_sorted_list(get_entry_tags(entry))
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            if #tags > 0 then
 | 
					 | 
					 | 
					 | 
					            if #tags > 0 then
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					                print(('    tags: %s'):format(table.concat(tags, ', ')))
 | 
					 | 
					 | 
					 | 
					                local taglist = table.concat(tags, ', ')
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					                short_help = short_help .. NEWLINE .. 'tags: ' .. taglist
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            end
 | 
					 | 
					 | 
					 | 
					            end
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        end
 | 
					 | 
					 | 
					 | 
					        end
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					 | 
					        print_columns(entry, short_help)
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    end
 | 
					 | 
					 | 
					 | 
					    end
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    if #entries == 0 then
 | 
					 | 
					 | 
					 | 
					    if #entries == 0 then
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        print('No matches.')
 | 
					 | 
					 | 
					 | 
					        print('No matches.')
 | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					 | 
					
 
 |