7 lines
92 B
Text
7 lines
92 B
Text
rationalise-dot() {
|
|
if [[ $LBUFFER = *.. ]]; then
|
|
LBUFFER+=/..
|
|
else
|
|
LBUFFER+=.
|
|
fi
|
|
}
|