feat: added xontrib for directory history navigation (#3533)

closes #3530
This commit is contained in:
Noorhteen Raja J 2020-05-01 05:59:56 +05:30 committed by GitHub
parent fe06b3d82a
commit 8e6d2fae7d
Failed to generate hash of commit
3 changed files with 67 additions and 29 deletions

1
.gitignore vendored
View file

@ -67,6 +67,7 @@ xonsh/webconfig/js/app.js
# venv (e.g, autovox) # venv (e.g, autovox)
venv/ venv/
.venv/
# VS Code # VS Code
.vscode/ .vscode/

View file

@ -0,0 +1,23 @@
**Added:**
* external *xontrib-hist-navigator* to facilitate directory history navigation.
**Changed:**
* <news item>
**Deprecated:**
* <news item>
**Removed:**
* <news item>
**Fixed:**
* <news item>
**Security:**
* <news item>

View file

@ -73,14 +73,27 @@
"In many cases, these may have a lower performance overhead than the ", "In many cases, these may have a lower performance overhead than the ",
"posix command line utility with the same name. This is because these ", "posix command line utility with the same name. This is because these ",
"tools avoid the need for a full subprocess call. Additionally, these ", "tools avoid the need for a full subprocess call. Additionally, these ",
"tools are cross-platform."] "tools are cross-platform."
]
}, },
{"name": "direnv", {
"name": "direnv",
"package": "xonsh-direnv", "package": "xonsh-direnv",
"url": "https://github.com/74th/xonsh-direnv", "url": "https://github.com/74th/xonsh-direnv",
"description": ["Supports direnv."] "description": [
"Supports direnv."
]
}, },
{"name": "distributed", {
"name": "hist_navigator",
"package": "xontrib-hist-navigator",
"url": "https://github.com/jnoortheen/xontrib-hist-navigator",
"description": [
"Move through directory history with nextd and prevd also with keybindings."
]
},
{
"name": "distributed",
"package": "xonsh", "package": "xonsh",
"url": "http://xon.sh", "url": "http://xon.sh",
"description": [ "description": [
@ -95,7 +108,8 @@
" x = $(echo I am elsewhere)\n\n", " x = $(echo I am elsewhere)\n\n",
" res = dsub.future.result()\n", " res = dsub.future.result()\n",
" print(res)\n\n", " print(res)\n\n",
"This is useful for long running or non-blocking jobs."] "This is useful for long running or non-blocking jobs."
]
}, },
{"name": "docker_tabcomplete", {"name": "docker_tabcomplete",
"package": "xonsh-docker-tabcomplete", "package": "xonsh-docker-tabcomplete",