{{:clipboards-sm-icon.png?nolink|}} ====== Clipboards ====== **Keyboard Maestro supports several different types of clipboards** * **System Clipboard** — the standard [[https://en.wikipedia.org/wiki/Clipboard_%28computing%29|Mac OS X Clipboard]] used by all Mac apps * The alternate name "**[[token:CurrentClipboard|Current Clipboard]]**" is used in some Macro Actions * **Named Clipboards** — Copy of System Clipboard, or other Named Clipboard, created by user for future use * There is usually a default *Named Clipboard* named "Default Clipboard", do not confuse this with the Mac’s *System Clipboard*. * **Past Clipboards** — Prior Versions of the *System Clipboard* stored in the Keyboard Maestro [[#Clipboard_History]] * **Trigger Clipboard** — The clipboard referenced by a [[trigger:Clipboard Filter]] menu selection (or the System Clipboard otherwise). ===== System Clipboard ===== The System Clipboard is the clipboard that you will use and work with the most. ==== Actions That Use The Clipboard ==== (!) Keep in mind that **the System Clipboard is involved in all operations (Actions)** that transfer data between the user interface (documents, menus, web pages,etc) and Keyboard Maestro. For example, **all of these Actions go through *and will change* the System Clipboard:** * [[action:Insert_Text_by_Pasting]] * [[action:Copy_to_Named_Clipboard]] * [[action:Paste_from_Named_Clipboard]] * and many others ==== Pause Until Clipboard Changes ==== Sometimes you will need to wait until the app has completed setting the Clipboard. You can use the [[function:CLIPBOARDSEED|]], in a calculation (`CBSeedBefore ≠ CLIPBOARDSEED()`) condition in the [[action:Pause_Until|Pause Until Action]] to achieve this. Of course you will need to set the Keyboard Maestro Variable `CBSeedBefore` in an Action _before_ the Action to set the Clipboard. ==== Discussion ==== The System Clipboard is a complicated entity, and often contains many different flavors of the same data last copied from an app. To better understand how Keyboard Maestro processes the System Clipboard, see [[https://forum.keyboardmaestro.com/t/ulysses-no-text-in-clipboard/6742/23?u=jmichaeltx | this Forum post by @PeterNLewis]]. In particular, this post deals with getting plain text from the System Clipboard. ===== Clipboard History ===== ==== Description ==== The Clipboard History keeps version history of the last two hundred times you have copied something to the System Clipboard. You can then paste any previous system clipboard by triggering the Clipboard History Switcher macro. This is a very powerful and useful feature. ==== Options ==== If you enable the *Save Clipboard History to Disk* preference in the Keyboard Maestro General preferences, the clipboard history will be saved and restored when Keyboard Maestro Engine is quit and relaunched (such as when you restart or upgrade). Otherwise it will be reset each time you quit the Keyboard Maestro Engine. ==== Display History ==== The Clipboard History Switcher is a built-in Macro, which you can find in the Keyboard Maestro editor, in the //Switcher Group// in the [[Macro_Groups|Macro Groups]]. To trigger the Clipboard History Switcher, press the default hotkey of V (or a hot key of your choosing). {{ manual:clipboardhistoryswitcher.png?nolink&674 | Clipboard History Switcher Window }} You can also use the [[collection:Clipboard_History]] within the [For Each action](/action/For_Each). For more info, see [Clipboard History Switcher documentation](/manual/Clipboard_History_Switcher). ==== Paste from History ==== There is no one built-in Macro or Action that will paste from the _Clipboard History_, but you can easily do this by making use of the [[action:Set_Clipboard_to_Past_Clipboard]] _Action_. For example, to paste from the 2nd item on the _Clipboard History_ (where the latest, most recent item is #1), you can use these three _Actions_ in a macro: {{:paste-from-clipboard-history-km-7.3.png?nolink|}} For more discussion on this, see [[https://forum.keyboardmaestro.com/t/how-can-i-get-the-second-to-last-item-in-clipboard/6615/6?u=jmichaeltx | this Keyboard Maestro Forum post]] . ===== Named Clipboards ===== A Named Clipboard is **not** a true clipboard like the Mac’s System Clipboard. Rather it is simply a means to permanently store (like a file does) clipboard contents (like images or styled text) that can later be used to place on the System Clipboard. **Purpose** * Store a copy of another Clipboard (System or Named) that will persist, even across your Mac restarts, until you either change it or delete it. * Make changes to a Named Clipboard using Actions like [[action:Apply_Style_to_Clipboard]]. * Store styled text, images, etc that cannot be stored in a Keyboard Maestro Variable (which stores //only// plain text) **Example Use of Named Clipboards** * Storing styled text and/or images for future use, like a styled email signature or logos. * Saving the current System Clipboard for future use * To restore at end of your Macro. * To use in other Macros. (!) Note that Keyboard Maestro provides a named clipboard with the name of "Default Clipboard". It is nothing special, and acts like any other named clipboard. The "Default" in the name means nothing more than that it was provided by default. Do not mistake this for the System Clipboard. Named Clipboards are located in the Keyboard Maestro Preferences in their own “Clipboards” panel. {{:keyboard_maestro_named_clipboard_prefs.png?direct&400|}} Use the [+] button to create a new named clipboard. The one-line field at the top-right is the name field. The big field on the lower-right is the content field. You can add plain text, styled text, and images simply by pasting into the content field, but if you want to add something like a Keyboard Maestro action you need to use a Copy to Named Clipboard action to get it in there. ===== Trigger Clipboard ===== The Trigger Clipboard is not a clipboard per se, but a reference to a clipboard, either the System Clipboard, a past clipboard in the Clipboard History, or a Named Clipboard. It is the clipboard referenced by a [[trigger:Clipboard Filter]] menu selection in the Clipboard Switcher. ===== Clipboard Actions ===== There are a variety of actions for accessing or processing the clipboard. These allow you to build macros that operate on the clipboard. **Actions That Directly Use Clipboards** * **System Clipboard** * [[action:Copy]] * [[action:Cut]] * [[action:Paste]] * [[action:Delete_Past_Clipboard|Delete Current or Past Clipboard]] in the history of the System Clipboard * [[action:Set_Variable_to_Text#Set_to_The_Clipboard|Set Variable to Text Action]] using [[token:CurrentClipboard|]] [[Tokens|Token]] * **All Clipboards** * [[action:Display_Clipboard]] * [[action:Set_Clipboard_to_Text|Set Clipboard to Text or Variable]] * [[action:Copy_Clipboard_to_Clipboard]] * [[action:Apply_Style_to_Clipboard]] * [[action:Filter]] * [[action:Search_and_Replace_Clipboard]] * [[action:Search_Clipboard]] * [[action:Substring_of_Variable_or_Clipboard]] * [[action:Apply_a_BBEdit_Text_Factory]] * **Named Clipboards** * [[action:Copy_Clipboard_to_Clipboard]] * [[action:Cut_to_Named_Clipboard]] * [[action:Paste_from_Named_Clipboard]] For more info, see [Clipboard Actions documentation](http://www.keyboardmaestro.com/documentation/6/actions.html#actions_clipboard). ===== Clipboard Tokens ===== In addition to the above Actions that use Clipboards, there are several Clipboard Tokens that can be used in any Action which has a field for Clipboards, Variables, or text. These Include: * [[token:CurrentClipboard|%CurrentClipboard%]] (same as System Clipboard) * [[token:NamedClipboard|%NamedClipboard%]] * [[token:PastClipboard|%PastClipboard%]] ===== Clipboard Condition ===== The [[condition:Clipboard|Clipboard Condition]] may be used with [[Actions|Macro Actions]] like [[action:If_Then_Else|IF/THEN]] to branch control based on criteria concerning the data on the Clipboard. For details see: [[condition:Clipboard|Clipboard Condition]] ===== See Also ===== === Actions === * [[action:Activate Clipboard Copy Switcher|Activate Clipboard Copy Switcher]] * [[action:Activate Clipboard Cut Switcher|Activate Clipboard Cut Switcher]] * [[action:Activate Clipboard History Switcher|Activate Clipboard History Switcher]] * [[action:Activate Clipboard Paste Switcher|Activate Clipboard Paste Switcher]] * [[:Actions|See all Actions]] === Functions === * [[function:CLIPBOARDSEED|]] -- used to determine when Clipboard has changed === Triggers === * [[trigger:Clipboard Filter]] trigger ==== Forum ==== - [[https://forum.keyboardmaestro.com/t/swap-selection-with-clipboard-macro/3066|Swap Selection with Clipboard Macro]] - [[https://forum.keyboardmaestro.com/t/high-memory-usage-in-km-7/3126/5|High memory usage in KM 7]] - [[https://forum.keyboardmaestro.com/search?q=Clipboard|Keyboard Maestro Forum topics about Clipboard]] ==== External Sites ==== * [Using Named Clipboards at MacAutomationTips](https://macautomationtips.wordpress.com/2013/06/08/how-to-use-named-clipboards-in-keyboard-maestro/)