15 lines
266 B
Python
15 lines
266 B
Python
from talon import Context
|
|
|
|
ctx = Context()
|
|
|
|
ctx.matches = r"""
|
|
app: visual_studio
|
|
"""
|
|
|
|
ctx.tags = ["user.command_client"]
|
|
|
|
|
|
@ctx.action_class("user")
|
|
class VisualStudioActions:
|
|
def command_server_directory() -> str:
|
|
return "visual-studio-command-server"
|