mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
Fix typo Crtl+C -> Ctrl+C (#5685)
Fix a few occurences across the tree. Also fix it retroactively in the CHANGELOG for folks that are going through older changes.
This commit is contained in:
parent
f3774a5bd6
commit
0b9c98c372
4 changed files with 5 additions and 5 deletions
|
@ -2721,7 +2721,7 @@ v0.8.6
|
|||
* Exits after concatenating normal files which have a finite size
|
||||
* Continues to run for special files which do not have a size,
|
||||
such as ``/dev/random``
|
||||
* Is interruptable in all cases with Crtl-C.
|
||||
* Is interruptable in all cases with Ctrl-C.
|
||||
* Callable aliases were not properly raising a ``CalledProcessError`` when they
|
||||
returned a non-zero exist status when ``$RAISE_SUBPROC_ERROR = True``. This has
|
||||
been fixed.
|
||||
|
@ -4463,7 +4463,7 @@ v0.5.0
|
|||
* Fixed many PEP8 violations that had gone unnoticed
|
||||
* Fix failure to detect an Anaconda python distribution if the python was install from the conda-forge channel.
|
||||
* current_branch will try and locate the vc binary once
|
||||
* May now Crtl-C out of an infinite loop with a subprocess, such as
|
||||
* May now Ctrl-C out of an infinite loop with a subprocess, such as
|
||||
```while True: sleep 1``.
|
||||
* Fix for stdin redirects.
|
||||
* Backgrounding works with ``$XONSH_STORE_STDOUT``
|
||||
|
|
|
@ -70,7 +70,7 @@ independent of the setting of the $AUTO_CONTINUE option.
|
|||
``EOF``, ``exit``, and ``quit``
|
||||
===================================
|
||||
The commands ``EOF``, ``exit``, and ``quit`` all alias the same action, which is to
|
||||
leave xonsh in a safe manner. Typing ``Crtl-d`` is the same as typing ``EOF`` and
|
||||
leave xonsh in a safe manner. Typing ``Ctrl-d`` is the same as typing ``EOF`` and
|
||||
pressing enter.
|
||||
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ initializes your personal run control file (usually at ``~/.xonshrc``). To invo
|
|||
.. code-block:: xonshcon
|
||||
|
||||
>>> xonfig web
|
||||
Web config started at 'http://localhost:8421'. Hit Crtl+C to stop.
|
||||
Web config started at 'http://localhost:8421'. Hit Ctrl+C to stop.
|
||||
127.0.0.1 - - [23/Aug/2020 15:04:39] "GET / HTTP/1.1" 200 -
|
||||
|
||||
This will open your default browser on a page served from a local server. You can exit the server by typing ``Ctrl+c`` at any time.
|
||||
|
|
|
@ -138,7 +138,7 @@ def bind_server_to(
|
|||
|
||||
httpd = cls(("", port), handler_cls)
|
||||
url = f"http://localhost:{port}"
|
||||
print(f"Web config started at '{url}'. Hit Crtl+C to stop.")
|
||||
print(f"Web config started at '{url}'. Hit Ctrl+C to stop.")
|
||||
if browser:
|
||||
import webbrowser
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue