This commit is contained in:
Jérôme Pouiller 2018-03-18 21:23:35 +00:00 committed by GitHub
commit 80721d3a57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,20 @@
# 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
}