home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2008 January / Mac_easy_01_08.iso / Software / Office / TextMate_1.5.7.dmg / TextMate.app / Contents / Resources / TextMate.scriptTerminology < prev    next >
Encoding:
Text File  |  2007-10-19  |  1.3 KB  |  40 lines

  1. {
  2.     Classes = {
  3.         NSApplication = {
  4.             Description = "TextMate's top-level object."; 
  5.             Name = application; 
  6.             PluralName = applications; 
  7.         }; 
  8.     }; 
  9.     Commands = {
  10.         GetURL = {
  11.             Description = "Open an URL";
  12.             Name = "get url";
  13.             UnnamedArgument = { Description = "url to open, should start with txmt://"; }; 
  14.         };
  15.         ReloadBundles = {
  16.             Description = "Reload bundles from disk";
  17.             Name = "reload bundles";
  18.             Arguments = {
  19.                 caching = {
  20.                     Description = "whether the reloading should use the cache, default is to use the cache."; 
  21.                     Name = "caching";
  22.                 };
  23.             }; 
  24.         };
  25.         InsertString = {
  26.             Description = "Insert text in the frontmost window";
  27.             Name = "insert";
  28.             Arguments = {
  29.                 asSnippet = {
  30.                     Description = "whether the text inserted should be interpreted as a snippet."; 
  31.                     Name = "as snippet";
  32.                 };
  33.             }; 
  34.             UnnamedArgument = { Description = "text to insert"; }; 
  35.         };
  36.     }; 
  37.     Description = "AppleScript commands and classes specific to TextMate."; 
  38.     Name = "TextMate suite"; 
  39. }
  40.