mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-11-05 01:12:42 +01:00
Compare commits
2 commits
b61ae9cedc
...
e5301dc413
| Author | SHA1 | Date | |
|---|---|---|---|
| e5301dc413 | |||
| c9db2ff61a |
2 changed files with 4 additions and 3 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
.. () {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue