mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Improve issue & code search (#33860)
Each "indexer" should provide the "search modes" they support by themselves. And we need to remove the "fuzzy" search for code.
This commit is contained in:
		| @@ -72,10 +72,10 @@ func Code(ctx *context.Context) { | ||||
|  | ||||
| 	if (len(repoIDs) > 0) || isAdmin { | ||||
| 		total, searchResults, searchResultLanguages, err = code_indexer.PerformSearch(ctx, &code_indexer.SearchOptions{ | ||||
| 			RepoIDs:        repoIDs, | ||||
| 			Keyword:        prepareSearch.Keyword, | ||||
| 			IsKeywordFuzzy: prepareSearch.IsFuzzy, | ||||
| 			Language:       prepareSearch.Language, | ||||
| 			RepoIDs:    repoIDs, | ||||
| 			Keyword:    prepareSearch.Keyword, | ||||
| 			SearchMode: prepareSearch.SearchMode, | ||||
| 			Language:   prepareSearch.Language, | ||||
| 			Paginator: &db.ListOptions{ | ||||
| 				Page:     page, | ||||
| 				PageSize: setting.UI.RepoSearchPagingNum, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user