feat(ST2.EditorPackages): bump up all packages
- Refresh PackageCache with latest versions of everything
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
# BlockCursorEverywhere #
|
||||
|
||||
I apologize, but this is no longer updated. I don't even use it anymore because of API limitations. I recommend looking at the original repo by netpro2k.
|
||||
|
||||
|
||||

|
||||
|
||||
It can become very difficult to keep track of your cursor location. This is solved by having a "block" cursor, which is very easy to spot no matter where it is on screen. Unfortunately, Sublime Text 2 does not (yet) support this feature natively. This Plugin mimics this functionality by highlighting the area behind the cursor whenever it moves (similar to how you might highlight syntax errors, or color a comment).
|
||||
|
@@ -19,7 +19,8 @@ class BlockCursorEverywhere(sublime_plugin.EventListener):
|
||||
view.erase_regions('BlockCursorListener')
|
||||
|
||||
def on_selection_modified(self, view):
|
||||
if view.settings().get('is_widget') or not("Vintage" in view.settings().get('ignored_packages') or view.settings().get('command_mode')):
|
||||
no_vintage = view.settings().get('ignored_packages') is None or "Vintage" in view.settings().get('ignored_packages')
|
||||
if view.settings().get('is_widget') or not(no_vintage or view.settings().get('command_mode')):
|
||||
view.erase_regions('BlockCursorListener')
|
||||
return
|
||||
self.show_block_cursor(view)
|
||||
|
@@ -1 +1 @@
|
||||
{"url": "https://github.com/ingshtrom/BlockCursorEverywhere", "version": "2013.01.20.10.51.30", "description": "Sublime Text 2 plugin to mimic a block cursor in Vintage command mode."}
|
||||
{"url": "https://github.com/ingshtrom/BlockCursorEverywhere", "version": "2013.08.02.15.49.34", "description": "Sublime Text 2 plugin to mimic a block cursor in Vintage command mode."}
|
Reference in New Issue
Block a user