Fix URL for xontrib-autojump (#4089)

* Fix URL for xontrib-autojump

The original url is broken. This one seems to be the one actively maintained.

* Update XonshData.elm
This commit is contained in:
Tejasvi S Tomar 2021-02-08 21:20:51 +05:30 committed by GitHub
parent ff8b470d02
commit 769e4f368f
Failed to generate hash of commit
2 changed files with 2 additions and 2 deletions

View file

@ -89,7 +89,7 @@ xontribs =
[ { name = "abbrevs", url = "http://xon.sh", license = "BSD 3-clause", description = "<p>Adds <span class=\"docutils literal\">abbrevs</span> dictionary to hold user-defined command abbreviations. The dictionary is searched as you type and the matching words are replaced at the command line by the corresponding dictionary contents once you hit 'Space' or 'Return' key. For instance a frequently used command such as <span class=\"docutils literal\">git status</span> can be abbreviated to <span class=\"docutils literal\">gst</span> as follows:</p>\n<pre class=\"literal-block\">$ xontrib load abbrevs\n$ abbrevs['gst'] = 'git status'\n$ gst # Once you hit &lt;space&gt; or &lt;return&gt;, 'gst' gets expanded to 'git status'.</pre>" }
, { name = "apt_tabcomplete", url = "https://github.com/DangerOnTheRanger/xonsh-apt-tabcomplete", license = "BSD 2-clause", description = "<p>Adds tabcomplete functionality to apt-get/apt-cache inside of xonsh.</p>" }
, { name = "argcomplete", url = "https://github.com/anki-code/xontrib-argcomplete", license = "", description = "<p>Argcomplete support to tab completion of python and xonsh scripts in xonsh.</p>" }
, { name = "autojump", url = "https://github.com/sagartewari01/autojump-xonsh", license = "", description = "<p>autojump support for xonsh</p>" }
, { name = "autojump", url = "https://github.com/wshanks/xontrib-autojump", license = "", description = "<p>autojump support for xonsh</p>" }
, { name = "autovox", url = "http://xon.sh", license = "BSD 3-clause", description = "<p>Manages automatic activation of virtual environments.</p>" }
, { name = "autoxsh", url = "https://github.com/Granitas/xonsh-autoxsh", license = "GPLv3", description = "<p>Adds automatic execution of xonsh script files called <span class=\"docutils literal\">.autoxsh</span> when enterting a directory with <span class=\"docutils literal\">cd</span> function</p>" }
, { name = "avox", url = "https://github.com/AstraLuma/xontrib-avox", license = "GPLv3", description = "<p>Automatic (de)activation of virtual environments as you cd around</p>" }

View file

@ -110,7 +110,7 @@ def define_xontribs():
),
),
"autojump": Xontrib(
url="https://github.com/sagartewari01/autojump-xonsh",
url="https://github.com/wshanks/xontrib-autojump",
description="autojump support for xonsh",
),
"autovox": Xontrib(