Skip to content

Commit 47db860

Browse files
Add common constant with url and a few common utilities
1 parent ed299cc commit 47db860

File tree

33 files changed

+175
-64
lines changed

33 files changed

+175
-64
lines changed

changelog/2023-09-addedDestinationAndScopeTypeToInsertSnippetAction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ tags: [enhancement, talon]
33
pullRequest: 1879
44
---
55

6-
- Added `destination: CursorlessDestination` and `scope_type: Optional[Union[str, list[str]]]` arguments to the public Talon api action `user.cursorless_insert_snippet`. See the [talon-side api docs](https://www.cursorless.org/docs/user/customization/#public-talon-actions) for more.
6+
- Added `destination: CursorlessDestination` and `scope_type: Optional[Union[str, list[str]]]` arguments to the public Talon api action `user.cursorless_insert_snippet`. See the [talon-side api docs](https://www.cursorless.org/docs/user/customization#public-talon-actions) for more.

changelog/2023-09-addedInsertPythonAction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ pullRequest: 1875
44
mergeDate: 2023-09-10
55
---
66

7-
- Added `cursorless_insert` action to the public Talon api. This api enables you to define custom grammars for Cursorless text insertion. See the [talon-side api docs](https://www.cursorless.org/docs/user/customization/#public-talon-actions) for more
7+
- Added `cursorless_insert` action to the public Talon api. This api enables you to define custom grammars for Cursorless text insertion. See the [talon-side api docs](https://www.cursorless.org/docs/user/customization#public-talon-actions) for more
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
tags: [documentation]
3+
pullRequest: 3016
4+
---
5+
6+
- Visualize scope tests in docs. Visualizes scope fixtures on [cursorless.org/docs/user/languages](https://www.cursorless.org/docs/user/languages).
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Cursorless is now monorepo 🙌. This document now lives at https://www.cursorless.org/docs/user/customization/.
1+
Cursorless is now monorepo 🙌. This document now lives at https://www.cursorless.org/docs/user/customization.

cursorless-talon/src/marks/lines_number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class CustomizableTerm:
1919

2020

2121
# NOTE: Please do not change these dicts. Use the CSVs for customization.
22-
# See https://www.cursorless.org/docs/user/customization/
22+
# See https://www.cursorless.org/docs/user/customization
2323
directions = [
2424
CustomizableTerm("lineNumberModulo100", "modulo100", lambda number: number - 1),
2525
CustomizableTerm("lineNumberRelativeUp", "relative", lambda number: -number),

data/fixtures/recorded/customRegex/clearWhite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ command:
1212
usePrePhraseSnapshot: true
1313
spokenFormError: >-
1414
custom regex with id \p{Zs}+; please see
15-
https://www.cursorless.org/docs/user/customization/ for more information
15+
https://www.cursorless.org/docs/user/customization for more information
1616
initialState:
1717
documentContents: "\" \""
1818
selections:

data/fixtures/recorded/ordinalScopes/clearFirstPaint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ command:
1414
usePrePhraseSnapshot: true
1515
spokenFormError: >-
1616
custom regex with id [^\s"'`]+; please see
17-
https://www.cursorless.org/docs/user/customization/ for more information
17+
https://www.cursorless.org/docs/user/customization for more information
1818
initialState:
1919
documentContents: aaa-bbb ccc-ddd eee-fff ggg-hhh
2020
selections:

data/fixtures/recorded/ordinalScopes/clearFirstPaint2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ command:
1414
usePrePhraseSnapshot: true
1515
spokenFormError: >-
1616
custom regex with id [^\s"'`]+; please see
17-
https://www.cursorless.org/docs/user/customization/ for more information
17+
https://www.cursorless.org/docs/user/customization for more information
1818
initialState:
1919
documentContents: aaa-bbb ccc-ddd eee-fff ggg-hhh
2020
selections:

data/fixtures/recorded/ordinalScopes/clearLastPaint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ command:
1414
usePrePhraseSnapshot: true
1515
spokenFormError: >-
1616
custom regex with id [^\s"'`]+; please see
17-
https://www.cursorless.org/docs/user/customization/ for more information
17+
https://www.cursorless.org/docs/user/customization for more information
1818
initialState:
1919
documentContents: aaa-bbb ccc-ddd eee-fff ggg-hhh
2020
selections:

data/fixtures/recorded/ordinalScopes/clearLastPaint2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ command:
1414
usePrePhraseSnapshot: true
1515
spokenFormError: >-
1616
custom regex with id [^\s"'`]+; please see
17-
https://www.cursorless.org/docs/user/customization/ for more information
17+
https://www.cursorless.org/docs/user/customization for more information
1818
initialState:
1919
documentContents: aaa-bbb ccc-ddd eee-fff ggg-hhh
2020
selections:

0 commit comments

Comments
 (0)