dragonfly-grammars/_custom_globals.py

32 lines
1.5 KiB
Python
Raw Permalink Normal View History

2019-08-02 15:25:33 -05:00
# Author:Brandon Lovrien
# Modified Jeremy Hayes
2019-08-02 15:25:33 -05:00
# 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"),
2022-02-10 09:47:18 -06:00
"spank": Key("space"),
"east": Key("end"),
"west": Key("home"),
"format": Key("ctrl") + Key("alt") + Key("f"),
2022-02-10 09:47:18 -06:00
"hash": Text("#"),
"punch": Text(","),
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()