diff --git a/README.md b/README.md index 1c2f234..2a37c7d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/source/create_example_docs.py b/docs/source/create_example_docs.py index 2830b46..c2bf679 100644 --- a/docs/source/create_example_docs.py +++ b/docs/source/create_example_docs.py @@ -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}>`_." ) diff --git a/docs/source/examples/example_usage.rst b/docs/source/examples/example_usage.rst index 333ecaf..0083dc7 100644 --- a/docs/source/examples/example_usage.rst +++ b/docs/source/examples/example_usage.rst @@ -58,4 +58,4 @@ Example Usage if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/gui_client.rst b/docs/source/examples/gui_client.rst index 555a512..6cbd424 100644 --- a/docs/source/examples/gui_client.rst +++ b/docs/source/examples/gui_client.rst @@ -51,4 +51,4 @@ Gui Client if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/highlight_logging_example.rst b/docs/source/examples/highlight_logging_example.rst index 8a9baff..3fe764e 100644 --- a/docs/source/examples/highlight_logging_example.rst +++ b/docs/source/examples/highlight_logging_example.rst @@ -40,4 +40,4 @@ Highlight Logging Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/logging_tree_sitter_example.rst b/docs/source/examples/logging_tree_sitter_example.rst index 6589fd3..507d1fb 100644 --- a/docs/source/examples/logging_tree_sitter_example.rst +++ b/docs/source/examples/logging_tree_sitter_example.rst @@ -43,4 +43,4 @@ Logging Tree Sitter Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/mapping_logging_example.rst b/docs/source/examples/mapping_logging_example.rst index c8d0492..20b1898 100644 --- a/docs/source/examples/mapping_logging_example.rst +++ b/docs/source/examples/mapping_logging_example.rst @@ -65,4 +65,4 @@ Mapping Logging Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/simple_autocomplete_example.rst b/docs/source/examples/simple_autocomplete_example.rst index 07099a6..9863736 100644 --- a/docs/source/examples/simple_autocomplete_example.rst +++ b/docs/source/examples/simple_autocomplete_example.rst @@ -34,4 +34,4 @@ Simple Autocomplete Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/simple_definitions_example.rst b/docs/source/examples/simple_definitions_example.rst index 1529207..5bcc96e 100644 --- a/docs/source/examples/simple_definitions_example.rst +++ b/docs/source/examples/simple_definitions_example.rst @@ -36,4 +36,4 @@ Simple Definitions Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/simple_editorconfig_example.rst b/docs/source/examples/simple_editorconfig_example.rst index b43d7a7..c94987c 100644 --- a/docs/source/examples/simple_editorconfig_example.rst +++ b/docs/source/examples/simple_editorconfig_example.rst @@ -23,4 +23,4 @@ Simple Editorconfig Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/simple_highlight_example.rst b/docs/source/examples/simple_highlight_example.rst index 6ed0789..e3d5190 100644 --- a/docs/source/examples/simple_highlight_example.rst +++ b/docs/source/examples/simple_highlight_example.rst @@ -30,4 +30,4 @@ Simple Highlight Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/simple_mapping_example.rst b/docs/source/examples/simple_mapping_example.rst index 70227fd..8e1d9c4 100644 --- a/docs/source/examples/simple_mapping_example.rst +++ b/docs/source/examples/simple_mapping_example.rst @@ -61,4 +61,4 @@ Simple Mapping Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/simple_replacements_example.rst b/docs/source/examples/simple_replacements_example.rst index d01b3b6..100ac75 100644 --- a/docs/source/examples/simple_replacements_example.rst +++ b/docs/source/examples/simple_replacements_example.rst @@ -33,4 +33,4 @@ Simple Replacements Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/examples/simple_tree_sitter_highlights_example.rst b/docs/source/examples/simple_tree_sitter_highlights_example.rst index d75b4e6..81dfe9c 100644 --- a/docs/source/examples/simple_tree_sitter_highlights_example.rst +++ b/docs/source/examples/simple_tree_sitter_highlights_example.rst @@ -37,4 +37,4 @@ Simple Tree Sitter Highlights Example if __name__ == "__main__": main() -See the file example file `here `_. \ No newline at end of file +See the file example file `here `_. \ No newline at end of file diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 77a1ed8..aa9ee5a 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -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! diff --git a/setup.py b/setup.py index b6957e3..cd74d9d 100644 --- a/setup.py +++ b/setup.py @@ -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="moosems.j@gmail.com", - 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"],