ST2 Guard Plugin Updates
Sunday, April 15, 2012 at 9:49PM Well, I am back with some more updates on my Sublime Text 2 Guard Plugin. This is a smaller release than the last as I have been very busy. Despite its small stature it is an exciting one as we have another contribution to honor. The following are the recent updates:
- Fixed comma, single quote, question mark color issues (#25)
- Fixed small color issue caused by ! char (#26)
- Better console colors, change 0 failures from red to green (Thanks @lidanh)
A special thanks goes out to @lidanh for the code contribution. The new colors are much nicer and the 0 failures being green instead of red makes it easier to detect success vs failure.
Thanks also goes out to all the users of the Sublime Text 2 Guard Plugin. Especially, the users that have been submitting bug reports and feature requests. This plugin wouldn't exist without the direction and feedback from you all.
Please continue to provide feedback via Sublime Text 2 Guard Plugin issues on our GitHub page.
--Drew
My zsh Setup
Friday, April 13, 2012 at 10:26PM Relatively recently I switched to ZSH for my shell. The primary reason I switched was that I had more flexibility in prompts as I can setup a right prompt and a left prompt. I also like the completion interfacing that ZSH provides. Anyways, I finally got around to generalizing my ZSH setup and makeing it available on GitHub as a backup for myself so that I can easily set it up again in the future, as well as a means of sharing my setup with all of you. Anyways, it is availabe on GitHub at http://github.com/cyphactor/dotzsh with instructions on how to install it using git.
left prompt,
multiple prompts,
right prompt,
shell,
zsh in
personal,
software development My VIM Setup
Wednesday, April 11, 2012 at 9:49PM So, as some of you may know I pulled my old .vimrc out of hiding and started playing around with vim again to see if I would potentially want to switch back to it from Sublime Text 2. The reason being that I still fealt I was missing something that I had in vim (the quick keyboard navigation and general flexibility). Anyways, I pulled my .vimrc out and added the basics of what I think I am going to need for it to be an acceptable replacement for Sublime Text 2. This includes fuzzy file search, tab completion, etc. Basically all the things necessary for it to be a competitor to Sublime Text 2 in my mind. It isn't perferct yet but it is a start.
Note: The only reason I am doing this is because I already knew VIM so I don't have a learning curve to really explore this. In my eyes Sublime Text 2 and VIM are pretty damn close in terms of functionality but Sublime Text 2 provides a much smaller learning curve for the majority of people.
This does NOT mean that I am giving up on Sublime Text 2 or that I am going to stop supporting my Sublime Text 2 plugins. If it comes to that at some point in the future I will find a new mantainer for them and let you all know.
Anyways, I have made my vim setup available on github via http://github.com/cyphactor/dotvim. The README for the repository provides instructions on how to install using git.
.vimrc,
fuzzy file search,
tab completion,
vim in
personal,
software development ST2 Guard Plugin Updates
Tuesday, February 28, 2012 at 10:41PM Well, I got some more updates for you all.
My Sublime Text 2 Guard Plugin has recently been recognized as an essential Sublime Text 2 plugin on a nettuts+ blog post. Thanks to this publicity and the exposure via Package Control, Twitter, GitHub, and Google I have gotten some decent feedback, especially around my recent addition of colored output. Thanks to all that feedback I have pushed out the following improvements to the Sublime Text 2 Guard Plugin:
- Support for directory paths with spaces (#19, Thanks @ffmike)
- Fixed dash based coloring issue (#16)
- Fixed single quote based coloring issue (#17)
- Fixed question mark based coloring issue (#20)
- Fixed period based coloring issue (#21)
- Fixed success dot section identification & coloring issue (#22)
- Fixed a second single quote based coloring issue (#23)
- Added command relativity (#24)
The above break down of improvements include primarily a bunch of coloring fixes, command relativity, and one very important issue that deserves some recognition, issue #19 by @ffmike. This is the Sublime Text 2 Guard Plugin's first contribution. Much thanks goes out to @ffmike for being our first contributor.
As usual if any of you have identified bugs or features that you would like added please submit them on the GitHub Issues page for the Sublime Text 2 Guard Plugin.
ST2 Guard Plugin in Color
Wednesday, February 22, 2012 at 11:49PM Hey all,
I know there are a number of you who have been eagerly awaiting this moment. I sure have been. I am proud to announce the first release of the Sublime Text 2 Guard plugin that provides colored output. Basically, it ended up that I had to define a language file to identify the entities in the output and then define a theme to color those identified entities. Once, I did that I simply programatically set the color_scheme and syntax options for the output panel and like magic colors worked. Given the complexity of the language definition and the limited test cases I had when developing I am sure there are going to be some bugs to work out. So, as usual please create issues if you find any of these issues.

