Merge branch 'master' of https://github.com/chrys87/fenrir
As usual, I didn't pull before pushing.
This commit is contained in:
commit
2b93302f2c
1
TODO
1
TODO
@ -2,7 +2,6 @@ ToDos in Priority order:
|
||||
|
||||
- Known Bugs
|
||||
Fenrir key sometimes wents crazy?
|
||||
sometimes text is presented twice (easiest to reproduce, type something while in irssi)
|
||||
gstreamer sounddriver doesnt work (i think it needs a Glib
|
||||
next word wrapping sometimes skips a word on beginn of line
|
||||
|
||||
|
@ -0,0 +1,24 @@
|
||||
#!/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
pass
|
||||
def initialize(self, environment):
|
||||
self.env = environment
|
||||
def shutdown(self):
|
||||
pass
|
||||
def getDescription(self):
|
||||
return 'No Description found'
|
||||
|
||||
def run(self):
|
||||
self.env['runtime']['cursorManager'].clearReviewCursor()
|
||||
|
||||
def setCallback(self, callback):
|
||||
pass
|
||||
|
@ -17,8 +17,7 @@ class command():
|
||||
return 'No Description found'
|
||||
|
||||
def run(self):
|
||||
self.env['screenData']['oldCursorReview'] = None
|
||||
self.env['screenData']['newCursorReview'] = None
|
||||
self.env['runtime']['cursorManager'].clearMarks()
|
||||
|
||||
def setCallback(self, callback):
|
||||
pass
|
Loading…
Reference in New Issue
Block a user