Skip to content

Commit

Permalink
Update links
Browse files Browse the repository at this point in the history
  • Loading branch information
Moosems committed Jul 24, 2024
1 parent 507b82f commit 66a40a8
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ In the Command Line, paste the following: `pip install salve`
Salve is an IPC library that can be used by code editors to easily get autocompletions, replacements, editorconfig suggestions, definitions, and syntax highlighting.

> **Notes:**
> - Due to the way Windows handles chars the hidden character highlighter may not work properly. See [#57](https://github.com/Moosems/salve/pull/57). If anyone knows how to fix this, I would greatly appreciate you opening a PR :)
> - Due to the way Windows handles chars the hidden character highlighter may not work properly. See [#57](https://github.com/salve-org/salve/pull/57). If anyone knows how to fix this, I would greatly appreciate you opening a PR :)
## Documentation

Expand Down
2 changes: 1 addition & 1 deletion docs/source/create_example_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
for line in example_file:
rst_file.write(f" {line}")
rst_file.write(
f"\nSee the file example file `here <{'https://github.com/Moosems/salve/blob/master/examples/' + filename}>`_."
f"\nSee the file example file `here <{'https://github.com/salve-org/salve/blob/master/examples/' + filename}>`_."
)
2 changes: 1 addition & 1 deletion docs/source/examples/example_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ Example Usage
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/example_usage.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/example_usage.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/gui_client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ Gui Client
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/gui_client.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/gui_client.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/highlight_logging_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ Highlight Logging Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/highlight_logging_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/highlight_logging_example.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/logging_tree_sitter_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ Logging Tree Sitter Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/logging_tree_sitter_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/logging_tree_sitter_example.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/mapping_logging_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ Mapping Logging Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/mapping_logging_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/mapping_logging_example.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/simple_autocomplete_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ Simple Autocomplete Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/simple_autocomplete_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/simple_autocomplete_example.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/simple_definitions_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ Simple Definitions Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/simple_definitions_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/simple_definitions_example.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/simple_editorconfig_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ Simple Editorconfig Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/simple_editorconfig_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/simple_editorconfig_example.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/simple_highlight_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ Simple Highlight Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/simple_highlight_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/simple_highlight_example.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/simple_mapping_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ Simple Mapping Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/simple_mapping_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/simple_mapping_example.py>`_.
2 changes: 1 addition & 1 deletion docs/source/examples/simple_replacements_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Simple Replacements Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/simple_replacements_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/simple_replacements_example.py>`_.
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ Simple Tree Sitter Highlights Example
if __name__ == "__main__":
main()
See the file example file `here <https://github.com/Moosems/salve/blob/master/examples/simple_tree_sitter_highlights_example.py>`_.
See the file example file `here <https://github.com/salve-org/salve/blob/master/examples/simple_tree_sitter_highlights_example.py>`_.
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ To start using ``Salve``, first install it using pip:
$ pip install salve
And it's installed! Congratulations on giving your code editors the tools they need to work and allowing youself to not pull out hair in the process!
And it's installed! Congratulations on giving your code editors the tools they need to work and allowing yourself to not pull out hair in the process!

Let's move on to the :doc:`example-usage` page to give ``Salve`` a try!
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
description="Salve is an IPC library that can be used by code editors to easily get autocompletions, replacements, editorconfig suggestions, definitions, and syntax highlighting.",
author="Moosems",
author_email="[email protected]",
url="https://github.com/Moosems/salve",
url="https://github.com/salve-org/salve",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["pygments", "pyeditorconfig", "beartype", "tree-sitter"],
Expand Down

0 comments on commit 66a40a8

Please sign in to comment.