Is there a way to add right-click copy?

I use a data sheet oriented DB to keep track of all my apps, their registration codes, and support contacts. In that database, and others, I find myself clicking into a field with the desire to copy it’s contents for pasting elsewhere. But Copy is not a Right-Click option in that case (only various Selects).

I could use the edit menu or Cmd-C, but the right click feels so natural.

Is there a way to add it to the optional Right-Click actions?

Double-click to open the cell, then you can right-click to get the contextual menu with Copy

Yes, it is possible to customize this menu.

Here’s a right-click option with the Copy Cell command in it.

filemenubar "",
    menu("Context Menu")+
        menuitem("Copy Cell","CODE",{copycell}),
    "DATA_CONTEXTMENU"

Ah, the old, “… double click in the field first …” routine :exploding_head:

And a way to add it to the contextual Menu.

Thank you, both Jims.