Compare commits

..

No commits in common. "e5301dc413b7b3aadf8178db557f8c67999380c8" and "b61ae9cedc04d0fb5e0dd0311f68d6ce48135862" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View file

@ -71,7 +71,7 @@ ll () {
ls -lah $target
}
# 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
# Edit the contents of a file or list the contents of a directory (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 | less
ls -lah $target
}
.. () {

View file

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