How to display available options?

A beginner’s question: How can I get a list of the available options?


tell application "TextWrangler"
	tell front text document
		process lines containing matching string "^.*?\\t" output options {matching all:true, duplicates to new document:true} with matching with grep
	end tell
end tell

I hoped that it was simply typing the menu names :confused:

Hi,

open the dictionary ⇧⌘O (O not zero) / select TextWrangler and search for Process Lines Containing Output Options

Thanks for your help!