Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #8425
    maxim_2004
    Member

    It would be great to add “Clone” command to Tab header’s context menu (at top under “Save” and “Close”).

    “Clone” would make a copy of current document, this copy would have Untitled.XXX name, XXX replicating the original extension.
    Thanks.

    #8426
    Yutaka Emura
    Keymaster

    Hi maxim_2004,

    Thanks for your inputs, but I don’t want to make too many features. How about running this macro:

    document.selection.SelectAll();
    s = document.selection.Text;
    document.selection.Collapse();
    editor.NewFile();
    document.selection.Text = s;

    Please let me know if you have further questions.
    Thank you.

    #8429
    maxim_2004
    Member

    Thanks. Yes, this surely would do.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.