From 769e4f368f18cde78345aa5a846f62816d796fc6 Mon Sep 17 00:00:00 2001 From: Tejasvi S Tomar <45873379+tejasvi@users.noreply.github.com> Date: Mon, 8 Feb 2021 21:20:51 +0530 Subject: [PATCH] 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 --- xonsh/webconfig/elm-src/XonshData.elm | 2 +- xonsh/xontribs_meta.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xonsh/webconfig/elm-src/XonshData.elm b/xonsh/webconfig/elm-src/XonshData.elm index d692fd5a1..643c79ea7 100644 --- a/xonsh/webconfig/elm-src/XonshData.elm +++ b/xonsh/webconfig/elm-src/XonshData.elm @@ -89,7 +89,7 @@ xontribs = [ { name = "abbrevs", url = "http://xon.sh", license = "BSD 3-clause", description = "

Adds abbrevs 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 git status can be abbreviated to gst as follows:

\n
$ xontrib load abbrevs\n$ abbrevs['gst'] = 'git status'\n$ gst # Once you hit <space> or <return>, 'gst' gets expanded to 'git status'.
" } , { name = "apt_tabcomplete", url = "https://github.com/DangerOnTheRanger/xonsh-apt-tabcomplete", license = "BSD 2-clause", description = "

Adds tabcomplete functionality to apt-get/apt-cache inside of xonsh.

" } , { name = "argcomplete", url = "https://github.com/anki-code/xontrib-argcomplete", license = "", description = "

Argcomplete support to tab completion of python and xonsh scripts in xonsh.

" } - , { name = "autojump", url = "https://github.com/sagartewari01/autojump-xonsh", license = "", description = "

autojump support for xonsh

" } + , { name = "autojump", url = "https://github.com/wshanks/xontrib-autojump", license = "", description = "

autojump support for xonsh

" } , { name = "autovox", url = "http://xon.sh", license = "BSD 3-clause", description = "

Manages automatic activation of virtual environments.

" } , { name = "autoxsh", url = "https://github.com/Granitas/xonsh-autoxsh", license = "GPLv3", description = "

Adds automatic execution of xonsh script files called .autoxsh when enterting a directory with cd function

" } , { name = "avox", url = "https://github.com/AstraLuma/xontrib-avox", license = "GPLv3", description = "

Automatic (de)activation of virtual environments as you cd around

" } diff --git a/xonsh/xontribs_meta.py b/xonsh/xontribs_meta.py index 0de0f2710..e3973ed90 100644 --- a/xonsh/xontribs_meta.py +++ b/xonsh/xontribs_meta.py @@ -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(