Compare commits

..

2 Commits

Author SHA1 Message Date
9b59aeec09 fixed alt+up terminalFocus 2025-11-01 13:13:19 +00:00
56dcd30ee1 Added gl alias 2025-10-30 20:31:57 +00:00
2 changed files with 10 additions and 6 deletions

View File

@@ -9,9 +9,10 @@
{
// Move to parent directory in terminal
"key": "alt+up",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "cd ..\u000D"
}
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "cd ..\u000D"
},
"when": "terminalFocus"
}
]

View File

@@ -5,5 +5,8 @@
alias dps='docker ps --format "table {{.Names}}\t{{.Image}}\t{{.RunningFor}}\t{{.Status}}"'
## Git
### Quick Git Status
#### such command HAS to have a short version...
#### Such command HAS to have a short version...
alias gs='git status'
### Quick Git Log (--oneline)
#### When needing to get the hash of a certain commit or just check where your HEAD/remote repo is - also worth having a short version...
alias gl='git log --online'