Skip to content

Commit

Permalink
Increase version number, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanpil committed Jan 15, 2017
1 parent 273c825 commit 11c0d85
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
````

Expand Down Expand Up @@ -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.
Expand All @@ -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
2 changes: 1 addition & 1 deletion snips.ahk
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 7 additions & 1 deletion snips.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ folder=snips
; See https://autohotkey.com/docs/Hotkeys.htm#Symbols
; Default: ^` = Ctrl + Backtick
; Example: ^+/ = Ctrl + Shift + Slash
key=^`
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

0 comments on commit 11c0d85

Please sign in to comment.