org to sh

This commit is contained in:
Anthony Scopatz 2016-02-10 02:43:04 -05:00
parent 54a11e7123
commit 153d2358e3
5 changed files with 8 additions and 8 deletions

View file

@ -16,4 +16,4 @@ The language is a superset of Python 3.4+ with additional shell primitives.
xonsh (pronounced *conch*) is meant for the daily use of experts and novices
alike.
Please visit http://xonsh.org for more information.
Please visit http://xon.sh for more information.

View file

@ -278,7 +278,7 @@ open an issue on GitHub.
Helpful Links
=============
* `Documentation <http://xonsh.org>`_
* `Documentation <http://xon.sh>`_
* `Mailing list <https://groups.google.com/forum/#!forum/xonsh>`_
* `GitHub Repository <https://github.com/scopatz/xonsh>`_
* `IRC: channel #xonsh on OFTC <http://www.oftc.net/>`_

View file

@ -23,7 +23,7 @@ Let's dive in!
Starting xonsh
========================
Assuming you have successfully installed xonsh (see http://xonsh.org),
Assuming you have successfully installed xonsh (see http://xon.sh),
you can start up the xonsh interpreter via the ``xonsh`` command. Suppose
you are in a lesser terminal:

View file

@ -23,9 +23,9 @@ requirements:
- setproctitle
about:
home: http://xonsh.org/
home: http://xon.sh/
license: BSD
summary: xonsh is a Python-ish, BASHwards-compatible shell.
summary: xonsh is a Python-ish, BASHwards-facing shell.
# Removed temporarily until this is better support by the Anaconda launcher
#app:

View file

@ -285,7 +285,7 @@ DEFAULT_DOCS = {
'FORMATTER_DICT': VarDocs(
'Dictionary containing variables to be used when formatting $PROMPT '
"and $TITLE. See 'Customizing the Prompt' "
'http://xonsh.org/tutorial.html#customizing-the-prompt',
'http://xon.sh/tutorial.html#customizing-the-prompt',
configurable=False, default='xonsh.environ.FORMATTER_DICT'),
'HISTCONTROL': VarDocs(
'A set of strings (comma-separated list in string form) of options '
@ -320,7 +320,7 @@ DEFAULT_DOCS = {
'PROMPT': VarDocs(
'The prompt text. May contain keyword arguments which are '
"auto-formatted, see 'Customizing the Prompt' at "
'http://xonsh.org/tutorial.html#customizing-the-prompt.',
'http://xon.sh/tutorial.html#customizing-the-prompt.',
default='xonsh.environ.DEFAULT_PROMPT'),
'PROMPT_TOOLKIT_COLORS': VarDocs(
'This is a mapping of from color names to HTML color codes. Whenever '
@ -380,7 +380,7 @@ DEFAULT_DOCS = {
'TITLE': VarDocs(
'The title text for the window in which xonsh is running. Formatted '
"in the same manner as $PROMPT, see 'Customizing the Prompt' "
'http://xonsh.org/tutorial.html#customizing-the-prompt.',
'http://xon.sh/tutorial.html#customizing-the-prompt.',
default='xonsh.environ.DEFAULT_TITLE'),
'VI_MODE': VarDocs(
"Flag to enable 'vi_mode' in the 'prompt_toolkit' shell."),