From 11c0d85c62f643793794061ddc5b4829deb4ba8c Mon Sep 17 00:00:00 2001 From: Ethan Piliavin Date: Sun, 15 Jan 2017 12:56:30 -0500 Subject: [PATCH] Increase version number, update readme --- README.md | 16 +++++++++++++--- snips.ahk | 2 +- snips.ini | 8 +++++++- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 92eded0..a878a80 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Snips v1.0 +# Snips v1.1 A simple way to store and use text snippets in any windows program. https://github.com/ethanpil/snips @@ -21,8 +21,13 @@ All snippets are plain text files stored in the \snips folder under the program ### History ```` + v1.1 Added support for cmd.exe + Added some additional default snippets + Improved paste speed + Improved cursor movement speed + Added category name to search. (Example: type 'html' to see all \html snippets) - v1.0 - Initial Release + v1.0 Initial Release ```` @@ -64,6 +69,11 @@ The <<-2 on the last line of the file tells snips to position the cursor 2 chara I have included some basics to get you started. Please feel free to share any useful default snippets you think other users will appreciate. I prefer a PR on GitHub for your submissions. +## To Do + +* Add CTRL+N hotlink to easily create a new snippet under a category (undecided) +* Improve UI + ## Warranty and Support None provided. Good luck. Source code is available on GitHub. @@ -74,4 +84,4 @@ None provided. Good luck. Source code is available on GitHub. ## License and Copyright Copyright (C) Ethan Piliavin -Released under the [GPLv3 license](https://www.gnu.org/licenses/gpl-3.0.en.html), included as license.txt +Released under the [GPLv3 license](https://www.gnu.org/licenses/gpl-3.0.en.html), included as license.txt \ No newline at end of file diff --git a/snips.ahk b/snips.ahk index f6cdbea..243421f 100644 --- a/snips.ahk +++ b/snips.ahk @@ -1,6 +1,6 @@ #SingleInstance force -SnipsVersion := 1.0 +SnipsVersion := 1.1 ; Setup the GUI window, don't show it until data is loaded Gui, 1:Add, Edit, w220 hwndSearchHWND vSearchTerm gSearch diff --git a/snips.ini b/snips.ini index 6edc005..fc2dca2 100644 --- a/snips.ini +++ b/snips.ini @@ -8,4 +8,10 @@ folder=snips ; See https://autohotkey.com/docs/Hotkeys.htm#Symbols ; Default: ^` = Ctrl + Backtick ; Example: ^+/ = Ctrl + Shift + Slash -key=^` \ No newline at end of file +key=^` + +; Include category/folder name in quicksearch results +; Enabling will show ALL results if your typed search text +; matches a category/folder name. +; Default: Y +foldernamesearch=Y \ No newline at end of file