lifted-studios / AutoCopyright

Plugin for Sublime Text 2 to automate adding/updating the appropriate copyright text at the top of the file.
MIT License
13 stars 5 forks source link

Insert Copyright on Ruby adds a lame multi-line block #14

Closed lee-dohm closed 11 years ago

lee-dohm commented 11 years ago

Because the plugin defaults to multiline comments, when a copyright is inserted into Ruby it looks like this:

=begin
Copyright (c) 2012 by Lifted Studios.  All Rights Reserved.
=end

When it probably should look like this:

# 
# Copyright (c) 2012 by Lifted Studios.  All Rights Reserved.
# 
lee-dohm commented 11 years ago

Maybe add a setting for languages that are exceptions to the "block comments are better" rule?