Compare commits

..

2 commits

2 changed files with 4 additions and 3 deletions

View file

@ -71,7 +71,7 @@ ll () {
ls -lah $target
}
# Edit the contents of a file or list the contents of a directory (with hidden files shown) if that file is not found
# Edit the contents of a file or list the contents of a directory (piped to less, with hidden files shown) if that file is not found
lll () {
# Set target to argument or default to current working directory
local target="${1:-$(pwd)}"
@ -90,7 +90,7 @@ lll () {
return 1
fi
ls -lah $target
ls -lah $target | less
}
.. () {

View file

@ -16,5 +16,6 @@
"workbench.panel.showLabels": false,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorStyleInactive": "none"
"terminal.integrated.cursorStyleInactive": "none",
"debug.internalConsoleOptions": "neverOpen"
}