mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-24 04:29:25 +02:00
20 lines
313 B
Bash
20 lines
313 B
Bash
# vim: set sw=4 expandtab:
|
|
#
|
|
# Licence: GPL
|
|
# Created: 2016-09-27 14:41:53+02:00
|
|
# Main authors:
|
|
# - Jérôme Pouiller <jezz@sysmic.org>
|
|
#
|
|
# "Change Directory Interactive"
|
|
#
|
|
# Allow to change directory by editing current working directory path.
|
|
#
|
|
|
|
cdi() {
|
|
local _TMP=$PWD
|
|
vared _TMP
|
|
cd $_TMP
|
|
}
|
|
|
|
|
|
|