
--- STST ---

	STST (Simple Text Search Tool) is a tool for searching for text from inside files.
	
	STST is provided for free. Do not trust anyone who tries to sell STST.
	See https://sundee.neocities.org/ for updates and other programs.
	
	This program is for Windows only. Tested on Windows 7 only.


--- Usage ---

	Press [Tab] to switch between text inputs.
	Press [Enter] to select the first folder suggestion when editing the path.
	[Left click] a match to open it in a text editor (configurable from settings.txt).
	[Right click] a match to open the file location in Explorer (configurable from settings.txt).
	[Right click] the path or query to open a list of saved paths/queries. To save a path/query,
		press the square on the right, yellow means it is saved. The saved paths and queries are
		stored in "saved_paths.txt" and "saved_queries.txt" respectively. The first line in the
		file is the previously active path/query and is updated automatically.
	
	The "A=a" button will toggle case-insensitive search. If enabled, searching "hello" will also
		match "HELLO" and "Hello" and "hElLo" and so on.
	
	STST will start with the previous path and query (unless disabled from settings.txt), they can
	be overridden with command line arguments. The first argument is optional quoted path. The
	second argument is the query, everything after a dash will be the query:
		STST.exe "path/inside/quotes" -Your query after a dash.
		STST.exe -Query without path.
		STST.exe "path/without/query"


--- Other notes/trivia ---

	A remember.state file will be created when you use STST. It stores the window size, position,
	and the case sensitive mode, which will be loaded when you start STST next time. If you don't
	want this file to be created, add the word "portable" into the .exe name, for example
	"STST_portable.exe". The contents of the file are as follows:
		i32 state_file_version;
		i32 window_x;
		i32 window_y;
		i32 window_width;
		i32 window_height;
		i32 case_sensitive_mode;
	Note that currently portable mode only affects the state file, the other files are sill used.
	
	This program was written in plain C. stb_truetype library is used to handle font files and font
	rendering.
	https://github.com/nothings/stb
