We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 702a151 commit b0b4bffCopy full SHA for b0b4bff
Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
@@ -37,6 +37,12 @@ public interface IPublicAPI
37
/// <exception cref="FileNotFoundException">Thrown when unable to find the file specified in the command </exception>
38
/// <exception cref="Win32Exception">Thrown when error occurs during the execution of the command </exception>
39
void ShellRun(string cmd, string filename = "cmd.exe");
40
+
41
+ /// <summary>
42
+ /// Copy Text to clipboard
43
+ /// </summary>
44
+ /// <param name="Text">Text to save on clipboard</param>
45
+ public void CopyToClipboard(string text);
46
47
/// <summary>
48
/// Save everything, all of Flow Launcher and plugins' data and settings
0 commit comments