Skip to content

Commit 6cdba45

Browse files
committed
feat: add re as quick just -e
1 parent e1e5bdd commit 6cdba45

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

CLI-Basic.psm1

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,14 +226,15 @@ function rb {
226226
function rr {
227227
just run
228228
}
229-
230-
Set-Alias rme remindme
229+
function re {
230+
just -e
231+
}
231232
Set-Alias rgr scooter
232233

233234

234235
# INFO: more alias.
235236
Set-Alias -Name top -Value btm
236-
237+
Set-Alias -Name du -Value dust
237238

238239
# HACK: hook this into scoop.
239240
Invoke-Expression (&sfsu hook)

Microsoft.WindowsPowerShell_profile.ps1

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ Set-Alias -Name :q -Value exit -Scope Global -Option AllScope
44
function rr{
55
r r
66
}
7-
87
function rb{
9-
r build
8+
r build
9+
}
10+
function re{
11+
r -e
1012
}
1113

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ shebang := if os() == 'windows' { 'pwsh.exe' } else { '/usr/bin/env pwsh' }
22
set shell := ["pwsh", "-c"]
33
set windows-shell := ["pwsh.exe", "-NoLogo", "-Command"]
44
set dotenv-load := true
5+
6+
# INFO: really dont want to meddle with the .env, direnv is also related to this.
57
# set dotenv-filename := ".env"
68
# set dotenv-required := true
7-
# INFO: if you want to edit the justfile use js -e.
8-
99
help:
1010
@just --list -f "{{home_directory()}}/justfile"
1111

0 commit comments

Comments
 (0)