├── .gitattributes ├── .gitignore ├── App.config ├── BetterRichTextBox.Designer.cs ├── BetterRichTextBox.cs ├── CollectingFiles.Designer.cs ├── CollectingFiles.cs ├── CollectingFiles.resx ├── Config.cs ├── ExplorerIntegration.cs ├── FolderSelectDialog.cs ├── FontPicker.Designer.cs ├── FontPicker.cs ├── FontPicker.resx ├── GetFiles.cs ├── Globals.cs ├── Grepy2.csproj ├── Grepy2.ico ├── Grepy2.nsi ├── Grepy2.sln ├── Grepy2Help ├── CommandLine.htm ├── Grepy2.htm ├── Grepy2Help.hhp ├── Grepy2Help.vcxproj ├── Grepy2Help.vcxproj.filters ├── GrepyDetails.PNG ├── GrepyDetails.htm ├── GrepyExample.PNG ├── GrepyMenu.PNG ├── GrepyOptions.PNG ├── GrepySearch.PNG ├── Menu.htm ├── Options.htm ├── Search.htm ├── Table of Contents.hhc ├── View.htm └── WhatIsGrepy.htm ├── LICENSE.md ├── ListViewColumnSorter.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── NoMatchesFound.Designer.cs ├── NoMatchesFound.cs ├── NoMatchesFound.resx ├── OptionsForm.Designer.cs ├── OptionsForm.cs ├── OptionsForm.resx ├── PleaseWait.Designer.cs ├── PleaseWait.cs ├── PleaseWait.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── SearchForm.Designer.cs ├── SearchForm.cs ├── SearchForm.resx ├── SearchHelpForm.Designer.cs ├── SearchHelpForm.cs ├── SearchHelpForm.resx ├── Worker.cs └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/App.config -------------------------------------------------------------------------------- /BetterRichTextBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/BetterRichTextBox.Designer.cs -------------------------------------------------------------------------------- /BetterRichTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/BetterRichTextBox.cs -------------------------------------------------------------------------------- /CollectingFiles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/CollectingFiles.Designer.cs -------------------------------------------------------------------------------- /CollectingFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/CollectingFiles.cs -------------------------------------------------------------------------------- /CollectingFiles.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/CollectingFiles.resx -------------------------------------------------------------------------------- /Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Config.cs -------------------------------------------------------------------------------- /ExplorerIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/ExplorerIntegration.cs -------------------------------------------------------------------------------- /FolderSelectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/FolderSelectDialog.cs -------------------------------------------------------------------------------- /FontPicker.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/FontPicker.Designer.cs -------------------------------------------------------------------------------- /FontPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/FontPicker.cs -------------------------------------------------------------------------------- /FontPicker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/FontPicker.resx -------------------------------------------------------------------------------- /GetFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/GetFiles.cs -------------------------------------------------------------------------------- /Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Globals.cs -------------------------------------------------------------------------------- /Grepy2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2.csproj -------------------------------------------------------------------------------- /Grepy2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2.ico -------------------------------------------------------------------------------- /Grepy2.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2.nsi -------------------------------------------------------------------------------- /Grepy2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2.sln -------------------------------------------------------------------------------- /Grepy2Help/CommandLine.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/CommandLine.htm -------------------------------------------------------------------------------- /Grepy2Help/Grepy2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/Grepy2.htm -------------------------------------------------------------------------------- /Grepy2Help/Grepy2Help.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/Grepy2Help.hhp -------------------------------------------------------------------------------- /Grepy2Help/Grepy2Help.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/Grepy2Help.vcxproj -------------------------------------------------------------------------------- /Grepy2Help/Grepy2Help.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/Grepy2Help.vcxproj.filters -------------------------------------------------------------------------------- /Grepy2Help/GrepyDetails.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/GrepyDetails.PNG -------------------------------------------------------------------------------- /Grepy2Help/GrepyDetails.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/GrepyDetails.htm -------------------------------------------------------------------------------- /Grepy2Help/GrepyExample.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/GrepyExample.PNG -------------------------------------------------------------------------------- /Grepy2Help/GrepyMenu.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/GrepyMenu.PNG -------------------------------------------------------------------------------- /Grepy2Help/GrepyOptions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/GrepyOptions.PNG -------------------------------------------------------------------------------- /Grepy2Help/GrepySearch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/GrepySearch.PNG -------------------------------------------------------------------------------- /Grepy2Help/Menu.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/Menu.htm -------------------------------------------------------------------------------- /Grepy2Help/Options.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/Options.htm -------------------------------------------------------------------------------- /Grepy2Help/Search.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/Search.htm -------------------------------------------------------------------------------- /Grepy2Help/Table of Contents.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/Table of Contents.hhc -------------------------------------------------------------------------------- /Grepy2Help/View.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/View.htm -------------------------------------------------------------------------------- /Grepy2Help/WhatIsGrepy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Grepy2Help/WhatIsGrepy.htm -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /ListViewColumnSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/ListViewColumnSorter.cs -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/MainForm.resx -------------------------------------------------------------------------------- /NoMatchesFound.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/NoMatchesFound.Designer.cs -------------------------------------------------------------------------------- /NoMatchesFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/NoMatchesFound.cs -------------------------------------------------------------------------------- /NoMatchesFound.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/NoMatchesFound.resx -------------------------------------------------------------------------------- /OptionsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/OptionsForm.Designer.cs -------------------------------------------------------------------------------- /OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/OptionsForm.cs -------------------------------------------------------------------------------- /OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/OptionsForm.resx -------------------------------------------------------------------------------- /PleaseWait.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/PleaseWait.Designer.cs -------------------------------------------------------------------------------- /PleaseWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/PleaseWait.cs -------------------------------------------------------------------------------- /PleaseWait.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/PleaseWait.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/README.md -------------------------------------------------------------------------------- /SearchForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/SearchForm.Designer.cs -------------------------------------------------------------------------------- /SearchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/SearchForm.cs -------------------------------------------------------------------------------- /SearchForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/SearchForm.resx -------------------------------------------------------------------------------- /SearchHelpForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/SearchHelpForm.Designer.cs -------------------------------------------------------------------------------- /SearchHelpForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/SearchHelpForm.cs -------------------------------------------------------------------------------- /SearchHelpForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/SearchHelpForm.resx -------------------------------------------------------------------------------- /Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/Worker.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botman99/Grepy2/HEAD/app.manifest --------------------------------------------------------------------------------