orrsella / sbt-sublime

An sbt plugin for generating Sublime Text projects with library dependencies sources

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

genSublime

mslinn opened this issue · comments

All the standard SBT commands can be specified as hyphenated-words or as camelCase. For example, run-main can be used or runMain can be used. The gen-sublime command is not currently available as genSublime ... but I think it should be in order to be consistent. :)

Thanks, I added another command with the name you suggested. The reason this wasn't already in-place, like most other SBT commands, is because most other commands are actually Tasks and not Commands, which automatically work with both forms (see sublimeTransitive for example).

This change will be included when the next version is released, I don't want to release a version just for this change.

Thank you!