/usr/share/pyshared/autokey/model.py is in autokey-common 0.71.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 | # -*- coding: utf-8 -*-
# Copyright (C) 2011 Chris Dekter
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import re
from configmanager import *
from iomediator import Key, NAVIGATION_KEYS, KEY_SPLIT_RE
from scripting import Store
DEFAULT_WORDCHAR_REGEX = '[\w]'
def get_value_or_default(jsonData, key, default):
if key in jsonData:
return jsonData[key]
else:
return default
class AbstractAbbreviation:
"""
Abstract class encapsulating the common functionality of an abbreviation
"""
def __init__(self):
self.abbreviation = None
self.backspace = True
self.ignoreCase = False
self.immediate = False
self.triggerInside = False
self.set_word_chars(DEFAULT_WORDCHAR_REGEX)
def get_serializable(self):
d = {
"abbreviation": self.abbreviation,
"backspace": self.backspace,
"ignoreCase": self.ignoreCase,
"immediate": self.immediate,
"triggerInside": self.triggerInside,
"wordChars": self.get_word_chars()
}
return d
def load_from_serialized(self, data):
self.abbreviation = data["abbreviation"]
self.backspace = data["backspace"]
self.ignoreCase = data["ignoreCase"]
self.immediate = data["immediate"]
self.triggerInside = data["triggerInside"]
self.set_word_chars(data["wordChars"])
def copy_abbreviation(self, abbr):
self.abbreviation = abbr.abbreviation
self.backspace = abbr.backspace
self.ignoreCase = abbr.ignoreCase
self.immediate = abbr.immediate
self.triggerInside = abbr.triggerInside
self.set_word_chars(abbr.get_word_chars())
def set_word_chars(self, regex):
self.wordChars = re.compile(regex, re.UNICODE)
def get_word_chars(self):
return self.wordChars.pattern
def set_abbreviation(self, abbr):
self.abbreviation = abbr
def get_abbreviation(self):
if TriggerMode.ABBREVIATION not in self.modes:
return ""
else:
return self.abbreviation
def _should_trigger_abbreviation(self, buffer):
"""
Checks whether, based on the settings for the abbreviation and the given input,
the abbreviation should trigger.
@param buffer Input buffer to be checked (as string)
"""
stringBefore, typedAbbr, stringAfter = self._partition_input(buffer)
if len(typedAbbr) > 0:
# Check trigger character condition
if not self.immediate:
# If not immediate expansion, check last character
if len(stringAfter) == 1:
# Have a character after abbr
if self.wordChars.match(stringAfter):
# last character(s) is a word char, can't send expansion
return False
elif len(stringAfter) > 1:
# Abbr not at/near end of buffer any more, can't send
return False
else:
# Nothing after abbr yet, can't expand yet
return False
else:
# immediate option enabled, check abbr is at end of buffer
if len(stringAfter) > 0:
return False
# Check chars ahead of abbr
# length of stringBefore should always be > 0
if len(stringBefore) > 0:
if self.wordChars.match(stringBefore[-1]):
# last char before is a word char
if not self.triggerInside:
# can't trigger when inside a word
return False
return True
return False
def _partition_input(self, currentString):
"""
Partition the input into text before, text after, and typed abbreviation (if it exists)
"""
if self.ignoreCase:
matchString = currentString.lower()
stringBefore, typedAbbr, stringAfter = matchString.rpartition(self.abbreviation)
abbrStart = len(stringBefore)
abbrEnd = abbrStart + len(typedAbbr)
typedAbbr = currentString[abbrStart:abbrEnd]
else:
stringBefore, typedAbbr, stringAfter = currentString.rpartition(self.abbreviation)
return (stringBefore, typedAbbr, stringAfter)
class AbstractWindowFilter:
def __init__(self):
self.windowTitleRegex = None
def get_serializable(self):
if self.windowTitleRegex is not None:
return self.windowTitleRegex.pattern
else:
return None
def load_from_serialized(self, pattern):
self.set_window_titles(pattern)
def copy_window_filter(self, filter):
self.windowTitleRegex = filter.windowTitleRegex
def set_window_titles(self, regex):
if regex is not None:
self.windowTitleRegex = re.compile(regex, re.UNICODE)
else:
self.windowTitleRegex = regex
def uses_default_filter(self):
return self.windowTitleRegex is None
def get_filter_regex(self):
if self.windowTitleRegex is not None:
return self.windowTitleRegex.pattern
else:
return ""
def _should_trigger_window_title(self, windowTitle):
if self.windowTitleRegex is not None:
return self.windowTitleRegex.match(windowTitle)
else:
return True
class AbstractHotkey(AbstractWindowFilter):
def __init__(self):
self.modifiers = []
self.hotKey = None
def get_serializable(self):
d = {
"modifiers": self.modifiers,
"hotKey": self.hotKey
}
return d
def load_from_serialized(self, data):
self.set_hotkey(data["modifiers"], data["hotKey"])
def copy_hotkey(self, theHotkey):
[self.modifiers.append(modifier) for modifier in theHotkey.modifiers]
self.hotKey = theHotkey.hotKey
def set_hotkey(self, modifiers, key):
modifiers.sort()
self.modifiers = modifiers
self.hotKey = key
def check_hotkey(self, modifiers, key, windowTitle):
if self.hotKey is not None and self._should_trigger_window_title(windowTitle):
return (self.modifiers == modifiers) and (self.hotKey == key)
else:
return False
def get_hotkey_string(self, key=None, modifiers=None):
if key is None and modifiers is None:
if TriggerMode.HOTKEY not in self.modes:
return ""
key = self.hotKey
modifiers = self.modifiers
ret = ""
for modifier in modifiers:
ret += modifier
ret += "+"
if key == ' ':
ret += "<space>"
else:
ret += key
return ret
class Folder(AbstractAbbreviation, AbstractHotkey, AbstractWindowFilter):
"""
Manages a collection of subfolders/phrases/scripts, which may be associated
with an abbreviation or hotkey.
"""
def __init__(self, title, showInTrayMenu=False):
AbstractAbbreviation.__init__(self)
AbstractHotkey.__init__(self)
AbstractWindowFilter.__init__(self)
self.title = title
self.folders = []
self.items = []
self.modes = []
self.usageCount = 0
self.showInTrayMenu = showInTrayMenu
self.parent = None
def get_serializable(self):
d = {
"type": "folder",
"title": self.title,
"folders": [folder.get_serializable() for folder in self.folders],
"items": [item.get_serializable() for item in self.items],
"modes": self.modes,
"usageCount": self.usageCount,
"showInTrayMenu": self.showInTrayMenu,
"abbreviation": AbstractAbbreviation.get_serializable(self),
"hotkey": AbstractHotkey.get_serializable(self),
"filter": AbstractWindowFilter.get_serializable(self)
}
return d
def load_from_serialized(self, data, parent):
self.title = data["title"]
self.folders = []
for folderData in data["folders"]:
f = Folder("")
f.load_from_serialized(folderData, self)
self.folders.append(f)
self.items = []
for itemData in data["items"]:
if itemData["type"] == "phrase":
i = Phrase("", "")
else:
i = Script("", "")
i.load_from_serialized(itemData, self)
self.items.append(i)
self.modes = data["modes"]
self.usageCount = data["usageCount"]
self.showInTrayMenu = data["showInTrayMenu"]
self.parent = parent
AbstractAbbreviation.load_from_serialized(self, data["abbreviation"])
AbstractHotkey.load_from_serialized(self, data["hotkey"])
AbstractWindowFilter.load_from_serialized(self, data["filter"])
def get_tuple(self):
return ("folder", self.title, self.get_abbreviation(), self.get_hotkey_string(), self)
def set_modes(self, modes):
self.modes = modes
def add_folder(self, folder):
folder.parent = self
#self.folders[folder.title] = folder
self.folders.append(folder)
def remove_folder(self, folder):
#del self.folders[folder.title]
self.folders.remove(folder)
def add_item(self, item):
"""
Add a new script or phrase to the folder.
"""
item.parent = self
#self.phrases[phrase.description] = phrase
self.items.append(item)
def remove_item(self, item):
"""
Removes the given phrase or script from the folder.
"""
#del self.phrases[phrase.description]
self.items.remove(item)
def set_modes(self, modes):
self.modes = modes
def check_input(self, buffer, windowName):
if TriggerMode.ABBREVIATION in self.modes:
return self._should_trigger_abbreviation(buffer) and self._should_trigger_window_title(windowName)
else:
return False
def increment_usage_count(self):
self.usageCount += 1
if self.parent is not None:
self.parent.increment_usage_count()
def get_backspace_count(self, buffer):
"""
Given the input buffer, calculate how many backspaces are needed to erase the text
that triggered this folder.
"""
if TriggerMode.ABBREVIATION in self.modes and self.backspace:
if self._should_trigger_abbreviation(buffer):
stringBefore, typedAbbr, stringAfter = self._partition_input(buffer)
return len(self.abbreviation) + len(stringAfter)
if self.parent is not None:
return self.parent.get_backspace_count(buffer)
return 0
def calculate_input(self, buffer):
"""
Calculate how many keystrokes were used in triggering this folder (if applicable).
"""
if TriggerMode.ABBREVIATION in self.modes and self.backspace:
if self._should_trigger_abbreviation(buffer):
if self.immediate:
return len(self.abbreviation)
else:
return len(self.abbreviation) + 1
if self.parent is not None:
return self.parent.calculate_input(buffer)
return 0
"""def __cmp__(self, other):
if self.usageCount != other.usageCount:
return cmp(self.usageCount, other.usageCount)
else:
return cmp(other.title, self.title)"""
def __str__(self):
return self.title
def __repr__(self):
return str(self)
class TriggerMode:
"""
Enumeration class for phrase match modes.
NONE: Don't trigger this phrase (phrase will only be shown in its folder).
ABBREVIATION: Trigger this phrase using an abbreviation.
PREDICTIVE: Trigger this phrase using predictive mode.
"""
NONE = 0
ABBREVIATION = 1
PREDICTIVE = 2
HOTKEY = 3
class SendMode:
"""
Enumeration class for phrase send modes
KEYBOARD: Send using key events
CB_CTRL_V: Send via clipboard and paste with Ctrl+v
CB_CTRL_SHIFT_V: Send via clipboard and paste with Ctrl+Shift+v
SELECTION: Send via X selection and paste with middle mouse button
"""
KEYBOARD = "kb"
CB_CTRL_V = Key.CONTROL + "+v"
CB_CTRL_SHIFT_V = Key.CONTROL + '+' + Key.SHIFT + "+v"
CB_SHIFT_INSERT = Key.SHIFT + '+' + Key.INSERT
SELECTION = None
SEND_MODES = {
"Keyboard" : SendMode.KEYBOARD,
"Clipboard (Ctrl+V)" : SendMode.CB_CTRL_V,
"Clipboard (Ctrl+Shift+V)" : SendMode.CB_CTRL_SHIFT_V,
"Clipboard (Shift+Insert)" : SendMode.CB_SHIFT_INSERT,
"Mouse Selection" : SendMode.SELECTION
}
class Phrase(AbstractAbbreviation, AbstractHotkey, AbstractWindowFilter):
"""
Encapsulates all data and behaviour for a phrase.
"""
def __init__(self, description, phrase):
AbstractAbbreviation.__init__(self)
AbstractHotkey.__init__(self)
AbstractWindowFilter.__init__(self)
self.description = description
self.phrase = phrase
self.modes = []
self.usageCount = 0
self.prompt = False
self.omitTrigger = False
self.matchCase = False
self.parent = None
self.showInTrayMenu = False
self.sendMode = SendMode.KEYBOARD
def get_serializable(self):
d = {
"type": "phrase",
"description": self.description,
"phrase": self.phrase,
"modes": self.modes,
"usageCount": self.usageCount,
"prompt": self.prompt,
"omitTrigger": self.omitTrigger,
"matchCase": self.matchCase,
"showInTrayMenu": self.showInTrayMenu,
"abbreviation": AbstractAbbreviation.get_serializable(self),
"hotkey": AbstractHotkey.get_serializable(self),
"filter": AbstractWindowFilter.get_serializable(self),
"sendMode" : self.sendMode
}
return d
def load_from_serialized(self, data, parent):
self.description = data["description"]
self.phrase = data["phrase"]
self.modes = data["modes"]
self.usageCount = data["usageCount"]
self.prompt = data["prompt"]
self.omitTrigger = data["omitTrigger"]
self.matchCase = data["matchCase"]
self.parent = parent
self.showInTrayMenu = data["showInTrayMenu"]
self.sendMode = get_value_or_default(data, "sendMode", SendMode.KEYBOARD)
AbstractAbbreviation.load_from_serialized(self, data["abbreviation"])
AbstractHotkey.load_from_serialized(self, data["hotkey"])
AbstractWindowFilter.load_from_serialized(self, data["filter"])
def copy(self, thePhrase):
self.description = thePhrase.description
self.phrase = thePhrase.phrase
# TODO - re-enable me if restoring predictive functionality
#if TriggerMode.PREDICTIVE in thePhrase.modes:
# self.modes.append(TriggerMode.PREDICTIVE)
self.prompt = thePhrase.prompt
self.omitTrigger = thePhrase.omitTrigger
self.matchCase = thePhrase.matchCase
self.parent = thePhrase.parent
self.showInTrayMenu = thePhrase.showInTrayMenu
self.copy_abbreviation(thePhrase)
self.copy_hotkey(thePhrase)
self.copy_window_filter(thePhrase)
def get_tuple(self):
return ("edit-paste", self.description, self.get_abbreviation(), self.get_hotkey_string(), self)
def set_modes(self, modes):
self.modes = modes
def check_input(self, buffer, windowName):
if self._should_trigger_window_title(windowName):
abbr = False
predict = False
if TriggerMode.ABBREVIATION in self.modes:
abbr = self._should_trigger_abbreviation(buffer)
# TODO - re-enable me if restoring predictive functionality
#if TriggerMode.PREDICTIVE in self.modes:
# predict = self._should_trigger_predictive(buffer)
return (abbr or predict)
return False
def build_phrase(self, buffer):
self.usageCount += 1
self.parent.increment_usage_count()
expansion = Expansion(self.phrase)
triggerFound = False
if TriggerMode.ABBREVIATION in self.modes:
if self._should_trigger_abbreviation(buffer):
stringBefore, typedAbbr, stringAfter = self._partition_input(buffer)
triggerFound = True
if self.backspace:
# determine how many backspaces to send
expansion.backspaces = len(self.abbreviation) + len(stringAfter)
else:
expansion.backspaces = len(stringAfter)
if not self.omitTrigger:
expansion.string += stringAfter
if self.matchCase:
if typedAbbr.istitle():
expansion.string = expansion.string.capitalize()
elif typedAbbr.isupper():
expansion.string = expansion.string.upper()
elif typedAbbr.islower():
expansion.string = expansion.string.lower()
# TODO - re-enable me if restoring predictive functionality
#if TriggerMode.PREDICTIVE in self.modes:
# if self._should_trigger_predictive(buffer):
# expansion.string = expansion.string[ConfigManager.SETTINGS[PREDICTIVE_LENGTH]:]
# triggerFound = True
if not triggerFound:
# Phrase could have been triggered from menu - check parents for backspace count
expansion.backspaces = self.parent.get_backspace_count(buffer)
#self.__parsePositionTokens(expansion)
return expansion
def calculate_input(self, buffer):
"""
Calculate how many keystrokes were used in triggering this phrase.
"""
if TriggerMode.ABBREVIATION in self.modes:
if self._should_trigger_abbreviation(buffer):
if self.immediate:
return len(self.abbreviation)
else:
return len(self.abbreviation) + 1
# TODO - re-enable me if restoring predictive functionality
#if TriggerMode.PREDICTIVE in self.modes:
# if self._should_trigger_predictive(buffer):
# return ConfigManager.SETTINGS[PREDICTIVE_LENGTH]
if TriggerMode.HOTKEY in self.modes:
if buffer == '':
return len(self.modifiers) + 1
return self.parent.calculate_input(buffer)
def get_trigger_chars(self, buffer):
stringBefore, typedAbbr, stringAfter = self._partition_input(buffer)
return typedAbbr + stringAfter
def should_prompt(self, buffer):
"""
Get a value indicating whether the user should be prompted to select the phrase.
Always returns true if the phrase has been triggered using predictive mode.
"""
# TODO - re-enable me if restoring predictive functionality
#if TriggerMode.PREDICTIVE in self.modes:
# if self._should_trigger_predictive(buffer):
# return True
return self.prompt
def get_description(self, buffer):
# TODO - re-enable me if restoring predictive functionality
#if self._should_trigger_predictive(buffer):
# length = ConfigManager.SETTINGS[PREDICTIVE_LENGTH]
# endPoint = length + 30
# if len(self.phrase) > endPoint:
# description = "... " + self.phrase[length:endPoint] + "..."
# else:
# description = "... " + self.phrase[length:]
# description = description.replace('\n', ' ')
# return description
#else:
return self.description
# TODO - re-enable me if restoring predictive functionality
"""def _should_trigger_predictive(self, buffer):
if len(buffer) >= ConfigManager.SETTINGS[PREDICTIVE_LENGTH]:
typed = buffer[-ConfigManager.SETTINGS[PREDICTIVE_LENGTH]:]
return self.phrase.startswith(typed)
else:
return False"""
def parsePositionTokens(self, expansion):
# Check the string for cursor positioning token and apply lefts and ups as appropriate
if CURSOR_POSITION_TOKEN in expansion.string:
firstpart, secondpart = expansion.string.split(CURSOR_POSITION_TOKEN)
foundNavigationKey = False
for key in NAVIGATION_KEYS:
if key in expansion.string:
expansion.lefts = 0
foundNavigationKey = True
break
if not foundNavigationKey:
k = Key()
for section in KEY_SPLIT_RE.split(secondpart):
if not k.is_key(section) or section in [' ', '\n']:
expansion.lefts += len(section)
expansion.string = firstpart + secondpart
def __str__(self):
return self.description
def __repr__(self):
return "Phrase('" + self.description + "')"
class Expansion:
def __init__(self, string):
self.string = string
self.lefts = 0
self.backspaces = 0
class Script(AbstractAbbreviation, AbstractHotkey, AbstractWindowFilter):
"""
Encapsulates all data and behaviour for a script.
"""
def __init__(self, description, code):
AbstractAbbreviation.__init__(self)
AbstractHotkey.__init__(self)
AbstractWindowFilter.__init__(self)
self.description = description
self.code = code
self.store = Store()
self.modes = []
self.usageCount = 0
self.prompt = False
self.omitTrigger = False
self.parent = None
self.showInTrayMenu = False
def get_serializable(self):
d = {
"type": "script",
"description": self.description,
"code": self.code,
"store": self.store,
"modes": self.modes,
"usageCount": self.usageCount,
"prompt": self.prompt,
"omitTrigger": self.omitTrigger,
"showInTrayMenu": self.showInTrayMenu,
"abbreviation": AbstractAbbreviation.get_serializable(self),
"hotkey": AbstractHotkey.get_serializable(self),
"filter": AbstractWindowFilter.get_serializable(self)
}
return d
def load_from_serialized(self, data, parent):
self.description = data["description"]
self.code = data["code"]
self.store = Store(data["store"])
self.modes = data["modes"]
self.usageCount = data["usageCount"]
self.prompt = data["prompt"]
self.omitTrigger = data["omitTrigger"]
self.parent = parent
self.showInTrayMenu = data["showInTrayMenu"]
AbstractAbbreviation.load_from_serialized(self, data["abbreviation"])
AbstractHotkey.load_from_serialized(self, data["hotkey"])
AbstractWindowFilter.load_from_serialized(self, data["filter"])
def copy(self, theScript):
self.description = theScript.description
self.code = theScript.code
self.prompt = theScript.prompt
self.omitTrigger = theScript.omitTrigger
self.parent = theScript.parent
self.showInTrayMenu = theScript.showInTrayMenu
self.copy_abbreviation(theScript)
self.copy_hotkey(theScript)
self.copy_window_filter(theScript)
def get_tuple(self):
return ("text-x-script", self.description, self.get_abbreviation(), self.get_hotkey_string(), self)
def set_modes(self, modes):
self.modes = modes
def check_input(self, buffer, windowName):
if self._should_trigger_window_title(windowName):
if TriggerMode.ABBREVIATION in self.modes:
return self._should_trigger_abbreviation(buffer)
return False
def process_buffer(self, buffer):
self.usageCount += 1
self.parent.increment_usage_count()
triggerFound = False
backspaces = 0
string = ""
if TriggerMode.ABBREVIATION in self.modes:
if self._should_trigger_abbreviation(buffer):
stringBefore, typedAbbr, stringAfter = self._partition_input(buffer)
triggerFound = True
if self.backspace:
# determine how many backspaces to send
backspaces = len(self.abbreviation) + len(stringAfter)
else:
backspaces = len(stringAfter)
if not self.omitTrigger:
string += stringAfter
if not triggerFound:
# Phrase could have been triggered from menu - check parents for backspace count
backspaces = self.parent.get_backspace_count(buffer)
return backspaces, string
def should_prompt(self, buffer):
return self.prompt
def get_description(self, buffer):
return self.description
def __str__(self):
return self.description
def __repr__(self):
return "Script('" + self.description + "')"
|