mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
feat: added xontrib for directory history navigation (#3533)
closes #3530
This commit is contained in:
parent
fe06b3d82a
commit
8e6d2fae7d
3 changed files with 67 additions and 29 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -67,6 +67,7 @@ xonsh/webconfig/js/app.js
|
|||
|
||||
# venv (e.g, autovox)
|
||||
venv/
|
||||
.venv/
|
||||
|
||||
# VS Code
|
||||
.vscode/
|
||||
|
|
23
news/add_directory_history_navigation.rst
Normal file
23
news/add_directory_history_navigation.rst
Normal 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>
|
|
@ -73,14 +73,27 @@
|
|||
"In many cases, these may have a lower performance overhead than the ",
|
||||
"posix command line utility with the same name. This is because 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",
|
||||
"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",
|
||||
"url": "http://xon.sh",
|
||||
"description": [
|
||||
|
@ -95,7 +108,8 @@
|
|||
" x = $(echo I am elsewhere)\n\n",
|
||||
" res = dsub.future.result()\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",
|
||||
"package": "xonsh-docker-tabcomplete",
|
||||
|
|
Loading…
Add table
Reference in a new issue