File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,11 @@ in {
110110
111111 update . method = "never" ;
112112
113+ os = {
114+ shell = "${ pkgs . bash } /bin/bash" ;
115+ shellArg = "-c" ;
116+ } ;
117+
113118 keybinding = {
114119 universal = {
115120 prevItem = "<up>" ;
@@ -145,16 +150,16 @@ in {
145150 {
146151 key = "<c-l>" ;
147152 context = "files" ;
148- command = "lumen draft | tee /dev/tty | ${ clipboardCmd } " ;
153+ command = ''bash -c "lumen draft | tee >( ${ clipboardCmd } )"'' ;
149154 loadingText = "Generating message..." ;
150- outupt = "popup" ;
155+ output = "popup" ;
151156 }
152157 {
153158 key = "<c-k>" ;
154159 context = "files" ;
155- command = "lumen draft -c {{.Form.Context | quote}} | tee /dev/tty | ${ clipboardCmd } " ;
160+ command = ''bash -c "lumen draft -c {{.Form.Context | quote}} | tee >( ${ clipboardCmd } )"'' ;
156161 loadingText = "Generating message..." ;
157- outupt = "popup" ;
162+ output = "popup" ;
158163 prompts = [
159164 {
160165 type = "input" ;
You can’t perform that action at this time.
0 commit comments