Commit 395c9b2a81f2aaa10cbf3d81927504cb062e7a77

bugfix - auto-expanding selection when the cursor is at the very first column no longer yields a double

Commit diff

Support/lib/ruby_tm_helpers.rb

 
8181 end
8282
8383 last_part = line[ (col_number - 1)..-1]
84 first_part = line[ 0..col_number - 2]
84 first_part = col_number == 1 ? "" : line[ 0..col_number - 2]
8585
8686 last_part.gsub!(/^(#{options[:forward]}){0,1}.*$/i) { $1 }
8787
toggle raw diff