aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--home-manager/config/lf/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/home-manager/config/lf/default.nix b/home-manager/config/lf/default.nix
index ffd3b3ed..7b9861eb 100644
--- a/home-manager/config/lf/default.nix
+++ b/home-manager/config/lf/default.nix
@@ -21,7 +21,7 @@
...
}: ''
''${{
- exec ${functionCall {inherit file dependencies;}}
+ ${functionCall {inherit file dependencies;}}
}}
''; # closes the lf tui
pipe = {
@@ -30,7 +30,7 @@
...
}: ''
%{{
- exec ${functionCall {inherit file dependencies;}}
+ ${functionCall {inherit file dependencies;}}
}}
''; # runs the command in the ui/term bar
async = {
@@ -39,7 +39,7 @@
...
}: ''
&{{
- exec ${functionCall {inherit file dependencies;}}
+ ${functionCall {inherit file dependencies;}}
}}
''; # runs the command in the background
wait = {
@@ -48,7 +48,7 @@
...
}: ''
!{{
- exec ${functionCall {inherit file dependencies;}}
+ ${functionCall {inherit file dependencies;}}
}}
''; # adds a prompt after the command has run
in {