mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
22 lines
749 B
C#
22 lines
749 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Flow.Launcher.Plugin.Explorer.Search
|
|
{
|
|
internal static class Constants
|
|
{
|
|
internal const string FolderImagePath = "Images\\folder.png";
|
|
internal const string FileImagePath = "Images\\file.png";
|
|
internal const string DeleteFileFolderImagePath = "Images\\deletefilefolder.png";
|
|
internal const string CopyImagePath = "Images\\copy.png";
|
|
internal const string IndexImagePath = "Images\\index.png";
|
|
|
|
internal const string DefaultFolderSubtitleString = "Ctrl + Enter to open the directory";
|
|
|
|
internal static readonly char[] SpecialSearchChars = new char[]
|
|
{
|
|
'?', '*', '>'
|
|
};
|
|
}
|
|
}
|