fish: functions: Add aliases for meson
GStreamer now uses these meson commands instead of ninja. We need these aliases with GStreamer frequently.
This commit is contained in:
parent
95cb836e8d
commit
d9f9952ca1
6 changed files with 9 additions and 9 deletions
3
fish/.config/fish/functions/mb.fish
Normal file
3
fish/.config/fish/functions/mb.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function mb
|
||||
meson compile -C build
|
||||
end
|
3
fish/.config/fish/functions/mc.fish
Normal file
3
fish/.config/fish/functions/mc.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function mc
|
||||
meson compile --clean -C build
|
||||
end
|
3
fish/.config/fish/functions/md.fish
Normal file
3
fish/.config/fish/functions/md.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
function md
|
||||
meson devenv -C build
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function nb
|
||||
ninja -C build
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function nbc
|
||||
ninja -C build clean
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function nbd
|
||||
ninja -C build devenv
|
||||
end
|
Loading…
Reference in a new issue