File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Plugins/Flow.Launcher.Plugin.Shell Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,8 @@ public List<Result> Query(Query query)
84
84
85
85
Execute ( Process . Start , PrepareProcessStartInfo ( m , runAsAdministrator ) ) ;
86
86
return true ;
87
- }
87
+ } ,
88
+ CopyText = m
88
89
} ) ) ;
89
90
}
90
91
}
@@ -123,7 +124,8 @@ private List<Result> GetHistoryCmds(string cmd, Result result)
123
124
124
125
Execute ( Process . Start , PrepareProcessStartInfo ( m . Key , runAsAdministrator ) ) ;
125
126
return true ;
126
- }
127
+ } ,
128
+ CopyText = m . Key
127
129
} ;
128
130
return ret ;
129
131
} ) . Where ( o => o != null ) ;
@@ -152,7 +154,8 @@ private Result GetCurrentCmd(string cmd)
152
154
153
155
Execute ( Process . Start , PrepareProcessStartInfo ( cmd , runAsAdministrator ) ) ;
154
156
return true ;
155
- }
157
+ } ,
158
+ CopyText = cmd
156
159
} ;
157
160
158
161
return result ;
@@ -176,7 +179,8 @@ private List<Result> ResultsFromHistory()
176
179
177
180
Execute ( Process . Start , PrepareProcessStartInfo ( m . Key , runAsAdministrator ) ) ;
178
181
return true ;
179
- }
182
+ } ,
183
+ CopyText = m . Key
180
184
} ) ;
181
185
182
186
if ( _settings . ShowOnlyMostUsedCMDs )
You can’t perform that action at this time.
0 commit comments