On Dec 16, 2015, at 18:49, Lee Hinde <leehi...@gmail.com> wrote:
> Replying here just to show I checked the archives first...
> 
> Is there a way to view the BBEdit clipboard history, other than selecting the 
> previous clipboard and pasting X times?
______________________________________________________________________

Hey Lee,

No.  At least not built-in.

You can do it with an AppleScript though.

--
Best Regards,
Chris

-------------------------------------------------------------------------------------------
# Auth: Christopher Stone
# dCre: 2015/12/17 17:37
# dMod: 2015/12/17 17:48 
# Appl: BBEdit
# Task: Set selection to text chosen from BBEdit's clipboards.
# Tags: @Applescript, @Script, @BBEdit, @Choose, @Clipboard, @Text
-------------------------------------------------------------------------------------------

tell application "BBEdit"
  set clipboardList to contents of clipboards
  
  set pickedClipboardList to choose from list clipboardList with title "BBEdit 
Clipboard Contents" with prompt ¬
    "Pick 1 or more:" default items {item 1 of clipboardList} ¬
    multiple selections allowed true ¬
    without empty selection allowed
  
  set AppleScript's text item delimiters to return
  
  if pickedClipboardList ≠ false then set selection to pickedClipboardList as 
text
  
end tell

-------------------------------------------------------------------------------------------



-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>

--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.

Reply via email to