dragonfly-grammars/_custom_globals.py

29 lines
1.4 KiB
Python
Raw Normal View History

2019-08-02 15:25:33 -05:00
# Author:Brandon Lovrien
# This script includes some commands for various useful symbols used in programming
#from dragonfly import (Grammar, CompoundRule, Dictation, Text, Key, AppContext, MappingRule)
from dragonfly import *
2019-08-02 15:25:33 -05:00
# Useful commands for encapsulation of quotes, etc.
class UsefulStuff(MappingRule):
mapping = {
"in quotes": Text("\"\"") + Key("left"),
"in single quotes": Text("\'\'") + Key("left"),
"in parentheses": Text("()") + Key("left"),
"in brackets": Text("[]") + Key("left"),
"in braces": Text("{}") + Key("left"),
"in angle brackets": Text("<>") + Key("left"),
"parameters": Text("()"),
"arrow": Text("->"),
"double arrow": Text("=>"),
"enter|slap": Key("enter"),
"east": Key("end"),
"west": Key("home"),
2019-08-23 13:27:37 -05:00
"format": Key("ctrl") + Key("alt") + Key("b"),
"save": Key("ctrl") + Key("s")
2019-08-02 15:25:33 -05:00
}
globalStuff = Grammar("useful custom global commands") # Create a grammar to contain the command rule.
globalStuff.add_rule(UsefulStuff())
globalStuff.load()