Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions dont_clone_monorepo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""
This file exists in our monorepo so that if someone accidentally clones this monorepo
into their talon folder instead of cursorless-talon, they'll get a helpful error popup
"""

from talon import app


def on_ready():
app.notify(
"Whoops! You cloned our monorepo instead of cursorless-talon",
"Please remove cursorless and clone cursorless-talon instead:",
"https://github.com/cursorless-dev/cursorless-talon",
)


app.register("ready", on_ready)
Loading