Skip to content

Commit

Permalink
Noted the new Vintageous support. Also made minor fixes and updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
icylace committed Mar 8, 2015
1 parent 9c23190 commit e5764ac
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 12 deletions.
10 changes: 5 additions & 5 deletions CursorRuler.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'''
CursorRuler 1.1.2
CursorRuler 1.1.3
A plugin for the Sublime Text editor which marks the current cursor position
using dynamic rulers.
Expand Down Expand Up @@ -44,8 +44,8 @@ def __draw_on_view(cls, view, active_view):
#
# The cursor position is usually represented technically as an
# empty region. While in this case the region's `a` and `b`
# properties are the same in the case of a selection region
# being made the "b" property more accurately represents where
# properties are the same, in the case of a selection region
# being made the `b` property more accurately represents where
# the cursor is at.
#
# A cursor's `xpos` is its target horizontal layout position.
Expand Down Expand Up @@ -207,7 +207,7 @@ def run(self, edit):
CursorRuler.draw(self.view)
CursorRuler.enabled = True
else:
self.view.run_command('wrap_lines')
self.view.run_command('wrap_lines')


# ------------------------------------------------------------------------------
Expand Down Expand Up @@ -247,7 +247,7 @@ def on_selection_modified(self, view):

if CursorRuler.is_enabled(active_view):
CursorRuler.draw(active_view)

def on_command_mode_change(self):
self.on_selection_modified(None)

Expand Down
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,10 @@ ST3 seems to completely avoid this problematic scenario. I suppose it's due to

## Release Notes

2015-03-08: Version **1.1.3**

- Added [Vintageous][] support, thanks to [zjc0816][]!


2013-10-12: Version **1.1.2**

Expand Down Expand Up @@ -379,13 +383,15 @@ Have fun !



[issue 3]: https://github.com/icylace/CursorRuler/issues/3
[CursorRuler repo]: https://github.com/icylace/CursorRuler
[ruler coloring]: http://sublimetext.userecho.com/topic/93504-use-separate-colors-for-the-background-gutter-and-folder-tree/#comment_164903
[wrapLines]: http://www.sublimetext.com/docs/commands
[adzenith]: https://github.com/adzenith
[Cross]: https://github.com/chancedai/sublime-cross
[wrap lines]: https://github.com/icylace/CursorRuler#available-commands
[CursorRuler repo]: https://github.com/icylace/CursorRuler
[gutter coloring]: http://www.sublimetext.com/forum/viewtopic.php?f=3&t=6161#p26904
[Semantic Versioning]: http://semver.org/
[adzenith]: https://github.com/adzenith
[issue 3]: https://github.com/icylace/CursorRuler/issues/3
[MIT]: http://opensource.org/licenses/MIT
[ruler coloring]: http://sublimetext.userecho.com/topic/93504-use-separate-colors-for-the-background-gutter-and-folder-tree/#comment_164903
[Semantic Versioning]: http://semver.org/
[Vintageous]: http://guillermooo.bitbucket.org/Vintageous/
[wrap lines]: https://github.com/icylace/CursorRuler#available-commands
[wrapLines]: http://www.sublimetext.com/docs/commands
[zjc0816]: https://github.com/zjc0816
1 change: 1 addition & 0 deletions messages.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"1.1.3": "messages/1.1.3.txt",
"1.1.2": "messages/1.1.2.txt",
"1.1.1": "messages/1.1.1.txt",
"install": "messages/install.txt"
Expand Down
4 changes: 4 additions & 0 deletions messages/1.1.3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
CursorRuler 1.1.3 Release Notes
===============================

- Added [Vintageous](http://guillermooo.bitbucket.org/Vintageous/) support, thanks to [zjc0816](https://github.com/zjc0816)!

0 comments on commit e5764ac

Please sign in to comment.