We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e996d2 commit 6c86092Copy full SHA for 6c86092
dont_clone_monorepo.py
@@ -0,0 +1,17 @@
1
+"""
2
+This file exists in our monorepo so that if someone accidentally clones this monorepo
3
+into their talon folder instead of cursorless-talon, they'll get a helpful error popup
4
5
+
6
+from talon import app
7
8
9
+def on_ready():
10
+ app.notify(
11
+ "Whoops! You cloned our monorepo instead of cursorless-talon",
12
+ "Please remove cursorless and clone cursorless-talon instead:",
13
+ "https://github.com/cursorless-dev/cursorless-talon",
14
+ )
15
16
17
+app.register("ready", on_ready)
0 commit comments