diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-26 17:30:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-26 17:30:41 -0500 |
commit | 3d19fc9d525929904e64c8c31ba914bfd8c868a4 (patch) | |
tree | acab882c27707818b644d1d5c778436d9131c2c0 /docs/features | |
parent | 91ab799f293f0789bbb2759aaabc13c00da36b03 (diff) | |
parent | 8e33bed3f57c7667e132148af76fe646d837e232 (diff) | |
download | cmd2-git-3d19fc9d525929904e64c8c31ba914bfd8c868a4.tar.gz |
Merge pull request #859 from python-cmd2/doc_links
Fixed broken links in Sphinx docs
Diffstat (limited to 'docs/features')
-rw-r--r-- | docs/features/completion.rst | 2 | ||||
-rw-r--r-- | docs/features/history.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/features/completion.rst b/docs/features/completion.rst index 718fb3ba..41bc3b34 100644 --- a/docs/features/completion.rst +++ b/docs/features/completion.rst @@ -60,7 +60,7 @@ displayed to help the user. .. _arg_decorators: https://github.com/python-cmd2/cmd2/blob/master/examples/arg_decorators.py .. _colors: https://github.com/python-cmd2/cmd2/blob/master/examples/colors.py -.. _tab_autocompletion: https://github.com/python-cmd2/cmd2/blob/master/examples/tab_autocompletion..py +.. _tab_autocompletion: https://github.com/python-cmd2/cmd2/blob/master/examples/tab_autocompletion.py CompletionItem For Providing Extra Context diff --git a/docs/features/history.rst b/docs/features/history.rst index c1806065..3c238c3c 100644 --- a/docs/features/history.rst +++ b/docs/features/history.rst @@ -29,7 +29,7 @@ You can also search through the command history using ``Control-r``. Eric Johnson hosts a nice `readline cheat sheet <http://readline.kablamo.org/emacs.html>`_, or you can dig into the `GNU Readline User Manual -<https://tiswww.case.edu/php/chet/readline/rluserman.html>`_ for all the +<http://man7.org/linux/man-pages/man3/readline.3.html>`_ for all the details, including instructions for customizing the key bindings. ``cmd2`` makes a third type of history access available with the ``history`` |