Skip to content

Commit ddf03ef

Browse files
authored
Merge branch 'dev' into issue_1366
2 parents b8526f2 + 1dfada9 commit ddf03ef

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Plugins/Flow.Launcher.Plugin.Calculator/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Globalization;
44
using System.Runtime.InteropServices;

Plugins/Flow.Launcher.Plugin.Explorer/Search/WindowsIndex/IndexSearch.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Flow.Launcher.Infrastructure.Logger;
1+
using Flow.Launcher.Infrastructure.Logger;
22
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
33
using Microsoft.Search.Interop;
44
using System;
@@ -17,7 +17,7 @@ internal static class IndexSearch
1717
{
1818

1919
// Reserved keywords in oleDB
20-
private const string reservedStringPattern = @"^[`\@\#\^,\&\/\\\$\%_;\[\]]+$";
20+
private const string reservedStringPattern = @"^[`\@\@\#\#\*\^,\&\&\/\\\$\%_;\[\]]+$";
2121

2222
internal static async Task<List<Result>> ExecuteWindowsIndexSearchAsync(string indexQueryString, string connectionString, Query query, CancellationToken token)
2323
{
@@ -29,7 +29,7 @@ internal static async Task<List<Result>> ExecuteWindowsIndexSearchAsync(string i
2929
await using var conn = new OleDbConnection(connectionString);
3030
await conn.OpenAsync(token);
3131
token.ThrowIfCancellationRequested();
32-
32+
3333
await using var command = new OleDbCommand(indexQueryString, conn);
3434
// Results return as an OleDbDataReader.
3535
await using var dataReaderResults = await command.ExecuteReaderAsync(token) as OleDbDataReader;

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ And you can download <a href="https://github.com/Flow-Launcher/Flow.Launcher/dis
234234
| <kbd>Ctrl</kbd> +<kbd>I</kbd> | Open Settings window |
235235
| <kbd>F5</kbd> | Reload all plugin data |
236236
| <kbd>Ctrl</kbd> + <kbd>H</kbd> | Open search history |
237-
| <kbd>Ctrl</kbd> + <kbd>Backspace</kbd> | Back to previous directory |
238237

239238

240239
## System Command List

0 commit comments

Comments
 (0)