Is there a method to append a string to a static string via a keyboard shortcut and then send all of the string to the clipboard or even directly to a browser?
I have the following keyboard shortcut "keys": "ctrl+f2"], "command": "side_bar_copy_name" },
to copy the filename of the page I am editing.
An editor of epubs, I use that data to append to a variable in a url I have in my browser
http://localhost/epubtesting/index.php?file=<pasting in name of file here>
Since I use Linux, my file naming standards are already to use files with no spaces, either camel case or underscores in place of spaces.
Is there a simple means to add an argument (if that is the right term) so a shortcut would look something like?:
"keys": "ctrl+f2"], "command": "side_bar_copy_name", args: {"http://localhost/epubtesting/index.php?file=<append name of file here> "} },