Write a small program like the one below and run it from Launchy .
I wrote mine in C # - called it Commander ... probably the best name and the best program ever written.
using System; using System.Windows.Forms; namespace Commander { internal class Program { [STAThread] private static void Main() { var clipboardText = Clipboard.GetText(TextDataFormat.Text); Clipboard.SetText(clipboardText.Contains(",") ? clipboardText.Replace(",", Environment.NewLine) : clipboardText.Replace(Environment.NewLine, ",").TrimEnd(',')); } } }
Compile the above and make a link to the resulting Commander.exe from Launchy.
After the link: 1- select the character column and cut or copy the text 2- Summon Launch (Alt-Enter if you use the default shortcut) 3- Type Commander 4- Paste 5- Enjoy your list with a comma
Enter Commander again from the launch list with a comma-separated list, and the operation will be canceled. Read the code ... it's kind of obvious :)
source share