@@ -58,6 +58,7 @@ internal static Result CreateFolderResult(string title, string subtitle, string
58
58
SubTitle = Path . GetDirectoryName ( path ) ,
59
59
AutoCompleteText = GetPathWithActionKeyword ( path , ResultType . Folder ) ,
60
60
TitleHighlightData = StringMatcher . FuzzySearch ( query . Search , title ) . MatchData ,
61
+ CopyText = path ,
61
62
Action = c =>
62
63
{
63
64
if ( c . SpecialKeyState . CtrlPressed || ( ! Settings . PathSearchKeywordEnabled && ! Settings . SearchActionKeywordEnabled ) )
@@ -174,7 +175,7 @@ internal static Result CreateOpenCurrentFolderResult(string path, bool windowsIn
174
175
} , StringSplitOptions . None ) . Last ( ) ;
175
176
176
177
var title = $ "Open { folderName } ";
177
-
178
+
178
179
var subtitleFolderName = folderName ;
179
180
180
181
// ie. max characters can be displayed without subtitle cutting off: "Program Files (x86)"
@@ -189,6 +190,7 @@ internal static Result CreateOpenCurrentFolderResult(string path, bool windowsIn
189
190
AutoCompleteText = GetPathWithActionKeyword ( path , ResultType . Folder ) ,
190
191
IcoPath = path ,
191
192
Score = 500 ,
193
+ CopyText = path ,
192
194
Action = _ =>
193
195
{
194
196
Context . API . OpenDirectory ( path ) ;
@@ -213,6 +215,7 @@ internal static Result CreateFileResult(string filePath, Query query, int score
213
215
AutoCompleteText = GetPathWithActionKeyword ( filePath , ResultType . File ) ,
214
216
TitleHighlightData = StringMatcher . FuzzySearch ( query . Search , Path . GetFileName ( filePath ) ) . MatchData ,
215
217
Score = score ,
218
+ CopyText = filePath ,
216
219
Action = c =>
217
220
{
218
221
try
0 commit comments