1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>Lua plugin for Geany - Reference</title>
<style type="text/css">
<!--
UL,PRE,P{
margin: 12px 25% 12px 5%
}
.odd {
background-color:#f4f4fc
}
.even {
background-color:#ffffff
}
.desc {
font-family:sans-serif
}
-->
</style>
</head>
<body >
<hr><h2>Lua scripting plugin for the Geany IDE</h2><hr><br>
The Geany module provides these functions and variables...<br><br><br>
<div style="background-color:#fcf4f4; margin-left:12px; margin-right:12px">
<hr>
<table summary="quick links" width="90%" align="center" >
<tr align="center" >
<td><a href="#Editor_functions">Editor functions</a></td>
<td><a href="#System_functions">System functions</a></td>
<td><a href="#Dialog_functions">Dialog functions</a></td>
</tr></table>
<hr>
</div>
<br><br>
<b><a name="Editor_functions"></a>Editor functions:</b>
<table style="font-family:monospace" summary="function index" width="90%">
<tr class="odd">
<td> function <a href="#activate"><b>activate</b></a> ( tab_id )<br></td>
<td class="desc">-- Activate the specified editor tab.</td>
</tr>
<tr class="even">
<td> function <a href="#appinfo"><b>appinfo</b></a> ()<br></td>
<td class="desc">-- Return information about the current Geany instance.</td>
</tr>
<tr class="odd">
<td> function <a href="#batch"><b>batch</b></a> ( start )<br></td>
<td class="desc">-- Set a marker for a reversible group of operations.</td>
</tr>
<tr class="even">
<td> function <a href="#byte"><b>byte</b></a> ( [position] )<br></td>
<td class="desc">-- Get the numeric value of the character at position.</td>
</tr>
<tr class="odd">
<td> function <a href="#caret"><b>caret</b></a> ( [position] )<br></td>
<td class="desc">-- Get or set the caret position.</td>
</tr>
<tr class="even">
<td> function <a href="#close"><b>close</b></a> ( [filename]|[index] )<br></td>
<td class="desc">-- Close a document.</td>
</tr>
<tr class="odd">
<td> function <a href="#copy"><b>copy</b></a> ( [content]|[start,stop] )<br></td>
<td class="desc">-- Copy text to the clipboard.</td>
</tr>
<tr class="even">
<td> function <a href="#count"><b>count</b></a> ()<br></td>
<td class="desc">-- Get the number of open tabs.</td>
</tr>
<tr class="odd">
<td> function <a href="#cut"><b>cut</b></a> ()<br></td>
<td class="desc">-- Cut selection to the clipboard.</td>
</tr>
<tr class="even">
<td> function <a href="#documents"><b>documents</b></a> ( [doc_id] )<br></td>
<td class="desc">-- Access the list of all open documents.</td>
</tr>
<tr class="odd">
<td> function <a href="#filename"><b>filename</b></a> ()<br></td>
<td class="desc">-- Get the name of the current document.</td>
</tr>
<tr class="even">
<td> function <a href="#fileinfo"><b>fileinfo</b></a> ()<br></td>
<td class="desc">-- Return some information about the current document.</td>
</tr>
<tr class="odd">
<td> function <a href="#find"><b>find</b></a> ( phrase, start, stop, options )<br></td>
<td class="desc">-- Search for text within the document.</td>
</tr>
<tr class="even">
<td> function <a href="#height"><b>height</b></a> ()<br></td>
<td class="desc">-- Get the number of lines in the current document</td>
</tr>
<tr class="odd">
<td> function <a href="#keycmd"><b>keycmd</b></a> ( command )<br></td>
<td class="desc">-- Activate a built-in Geany menu command.</td>
</tr>
<tr class="even">
<td> function <a href="#keygrab"><b>keygrab</b></a> ( [prompt] )<br></td>
<td class="desc">-- Intercept a keystroke from Geany.</td>
</tr>
<tr class="odd">
<td> function <a href="#length"><b>length</b></a> ()<br></td>
<td class="desc">-- Get number of characters in the current document.</td>
</tr>
<tr class="even">
<td> function <a href="#lines"><b>lines</b></a> ( [index] )<br></td>
<td class="desc">-- Get the text on one specific line, or all of them.</td>
</tr>
<tr class="odd">
<td> function <a href="#match"><b>match</b></a> ( [position] )<br></td>
<td class="desc">-- Find a matching bracket, parenthesis, etc.</td>
</tr>
<tr class="even">
<td> function <a href="#navigate"><b>navigate</b></a> ( mode,count [,extend [,rect]])<br></td>
<td class="desc">-- Move the caret incrementally.</td>
</tr>
<tr class="odd">
<td> function <a href="#newfile"><b>newfile</b></a> ( [filename [, filetype] )<br></td>
<td class="desc">-- Create a new document.</td>
</tr>
<tr class="even">
<td> function <a href="#open"><b>open</b></a> ( [filename]|[index] )<br></td>
<td class="desc">-- Open or reload a file from disk.</td>
</tr>
<tr class="odd">
<td> function <a href="#paste"><b>paste</b></a> ()<br></td>
<td class="desc">-- Paste text from the clipboard.</td>
</tr>
<tr class="even">
<td> function <a href="#rowcol"><b>rowcol</b></a> ( [pos]|[row,col] )<br></td>
<td class="desc">-- Translate between linear and rectangular locations.</td>
</tr>
<tr class="odd">
<td> function <a href="#save"><b>save</b></a> ( [filename]|[index] )<br></td>
<td class="desc">-- Save an open document to a disk file.</td>
</tr>
<tr class="even">
<td> function <a href="#scintilla"><b>scintilla</b></a> ( msg_id, wparam, lparam )<br></td>
<td class="desc">-- Send a message directly to the Scintilla widget.</td>
</tr>
<tr class="odd">
<td> function <a href="#select"><b>select</b></a> ( [[start,] stop] )<br></td>
<td class="desc">-- Get or set the selection endpoints and caret.</td>
</tr>
<tr class="even">
<td> function <a href="#selection"><b>selection</b></a> ( [content] )<br></td>
<td class="desc">-- Get or set the contents of the document's selection.</td>
</tr>
<tr class="odd">
<td> function <a href="#settype"><b>settype</b></a> ( filetype )<br></td>
<td class="desc">-- Change the current file type.</td>
</tr>
<tr class="even">
<td> function <a href="#signal"><b>signal</b></a> ( widget, signal )<br></td>
<td class="desc">-- Send a GTK signal to a Geany interface widget.</td>
</tr>
<tr class="odd">
<td> function <a href="#status"><b>status</b></a> ( message )<br></td>
<td class="desc">-- Send a string to display in the status tab of the messages window.</td>
</tr>
<tr class="even">
<td> function <a href="#text"><b>text</b></a> ( [content] )<br></td>
<td class="desc">-- Get or set the contents of the entire document.</td>
</tr>
<tr class="odd">
<td> function <a href="#word"><b>word</b></a> ( [position] )<br></td>
<td class="desc">-- Get the word at the specified location.</td>
</tr>
<tr class="even">
<td> function <a href="#xsel"><b>xsel</b></a> ( [text] )<br></td>
<td class="desc">-- Get or set the contents of the primary X selection.</td>
</tr>
<tr class="odd">
<td> function <a href="#yield"><b>yield</b></a> ()<br></td>
<td class="desc">-- Refreshes the user interface.</td>
</tr>
<tr class="even">
<td> </td>
<td></td>
</tr>
<tr class="odd">
<td> var <a href="#caller"><b>caller</b></a> : <i>number</i><br>
</td><td class="desc">-- The index of the document that triggered an event.</td>
</tr>
<tr class="even">
<td> var <a href="#rectsel"><b>rectsel</b></a> : <i>boolean</i><br>
</td><td class="desc">-- Whether or not the selection is in rectangular mode.</td>
</tr>
<tr class="odd">
<td> var <a href="#project"><b>project</b></a> : <i>keyfile</i><br>
</td><td class="desc">-- An object representing a project configuration event.</td>
</tr>
<tr class="even">
<td> var <a href="#script"><b>script</b></a> : <i>string</i><br>
</td><td class="desc">-- The filename of the currently executing Lua script.</td>
</tr>
<tr class="odd">
<td> var <a href="#wordchars"><b>wordchars</b></a> : <i>string</i><br></td>
<td class="desc">-- The characters that are considered part of a word.</td>
</tr>
</table>
<br>
<br><br>
<b><a name="System_functions"></a>System functions:</b>
<table style="font-family:monospace" summary="function index" width="90%">
<tr class="odd">
<td> function <a href="#basename"><b>basename</b></a>( pathstr )<br></td>
<td class="desc">-- Extract the filename portion of a path string.</td>
</tr>
<tr class="even">
<td> function <a href="#dirlist"><b>dirlist</b></a>( path )<br></td>
<td class="desc">-- List the contents of a folder.</td>
</tr>
<tr class="odd">
<td> function <a href="#dirname"><b>dirname</b></a>( pathstr )<br></td>
<td class="desc">-- Get the directory portion of a file's path.</td>
</tr>
<tr class="even">
<td> function <a href="#fullpath"><b>fullpath</b></a>( filename )<br></td>
<td class="desc">-- Get the full path to a file.</td>
</tr>
<tr class="odd">
<td> function <a href="#launch"><b>launch</b></a> ( program [, arg1 [, arg2, ...]] )<br></td>
<td class="desc">-- Execute an external application.</td>
</tr>
<tr class="even">
<td> function <a href="#optimize"><b>optimize</b></a> ()<br></td>
<td class="desc">-- Run a script without the debug hook.</td>
</tr>
<tr class="odd">
<td> function <a href="#reloadconf"><b>reloadconf</b></a> ()<br></td>
<td class="desc">-- Reload Configuration.</td>
</tr>
<tr class="even">
<td> function <a href="#rescan"><b>rescan</b></a> ()<br></td>
<td class="desc">-- Regenerate the scripts menu.</td>
</tr>
<tr class="odd">
<td> function <a href="#stat"><b>stat</b></a> ( filename [, lstat] )<br></td>
<td class="desc">-- Retrieve some information about a disk file.</td>
</tr>
<tr class="even">
<td> function <a href="#timeout"><b>timeout</b></a> ( seconds )<br></td>
<td class="desc">-- Control maximum time allowed for script execution.</td>
</tr>
<tr class="odd">
<td> function <a href="#wkdir"><b>wkdir</b></a> ( [folder] )<br></td>
<td class="desc">-- Get or set the current working directory.</td>
</tr>
<tr class="even">
<td> </td>
<td></td>
</tr>
<tr class="odd">
<td> var <a href="#dirsep"><b>dirsep</b></a> : <i>string</i><br>
</td><td class="desc">-- The default filesystem path separator, "<tt>/</tt>" or "<tt>\</tt>".</td>
</tr>
</table>
<br>
<br><br>
<b><a name="Dialog_functions"></a>Dialog functions:</b>
<table style="font-family:monospace" summary="function index" width="90%">
<tr class="odd">
<td> function <a href="#choose"><b>choose</b></a> ( prompt, items )</td>
<td class="desc" width="33%">-- Select an item from the list.</td>
</tr>
<tr class="even">
<td> function <a href="#confirm"><b>confirm</b></a> ( title, question, default )</td>
<td class="desc">-- Ask a yes-or-no question.</td>
</tr>
<tr class="odd">
<td> function <a href="#input"><b>input</b></a> ( [prompt] [,default] )</td>
<td class="desc">-- Prompt to enter some text.</td>
</tr>
<tr class="even">
<td> function <a href="#message"><b>message</b></a> ( [title,] message )</td>
<td class="desc">-- Display some information.</td>
</tr>
<tr class="odd">
<td> function <a href="#pickfile"><b>pickfile</b></a> ( [mode [,path [,filter]]] )</td>
<td class="desc">-- Select a file from disk.</td>
</tr>
<tr class="even">
<td> </td>
<td></td>
</tr>
<tr class="odd">
<td> var <a href="#banner"><b>banner</b></a> : <i>string</i><br></td>
<td class="desc">-- The window title for all dialogs.</td>
</tr>
</table><br>
If you need a more advanced dialog creation API, check out the
<tt><big><a href="geanylua-input.html">dialog</a></big></tt> module.
<br><br><br>
<hr>
<hr><a name="activate"></a><h3><tt>geany.activate ( tab_id )</tt></h3><p>
Activates the document specified by <tt><b>tab_id</b></tt>.
</p>
<p>
If <tt><b>tab_id</b></tt> is a number, it activates the document at that index.
A <i>positive</i> number refers to the internal document array, and a <i>negative</i>
number refers to the (absolute) GtkNotebook index.<br>
Note that the indices begin at <tt>(1)</tt> and <tt>(-1)</tt> respectively.
</p>
<p>
If <tt><b>tab_id</b></tt> is a string, the function will try to activate the
notebook tab whose filename matches that string.<br>
( The full pathname is required! )
</p><p>
Returns <tt><b>true</b></tt> on success, or <tt><b>false</b></tt> if the tab could not be found.
</p><br><br>
<a name="appinfo"></a><hr><h3><tt>geany.appinfo ()</tt></h3><p>
Returns a Lua table containing information about the currently running Geany instance.<br><br>
The <tt>appinfo</tt> table contains the following fields:
<br>
<table border="0" summary="appinfo table fields">
<tr><td width="5%"></td><td><tt>debug</tt></td><td> -- <tt>true</tt> if Geany is running in debug mode.</td></tr>
<tr><td width="5%"></td><td><tt>configdir </tt></td><td> -- User's local configuration folder.</td></tr>
<tr><td width="5%"></td><td><tt>datadir</tt></td><td> -- System-wide configuration folder.</td></tr>
<tr><td width="5%"></td><td><tt>docdir</tt></td><td> -- Location of the Geany help files.</td></tr>
<tr><td width="5%"></td><td><tt>scriptdir</tt></td><td> -- Top level folder for GeanyLua scripts.</td></tr>
<tr><td width="5%"></td><td><tt>tools</tt></td><td> -- Table of user-configured tools. (see below)</td></tr>
<tr><td width="5%"></td><td><tt>template</tt></td><td> -- Table of user's template information. (see below)</td></tr>
<tr><td width="5%"></td><td><tt>project</tt></td><td> -- Table of current project information. (see below)</td></tr>
</table>
<p>
————</p><p>
The <tt>tools</tt> sub-table contains the following fields:
<br>
<table border="0" summary="tools table fields">
<tr><td width="15%"></td><td><tt>browser</tt> </td></tr>
<tr><td width="15%"></td><td><tt>term</tt> </td><td></tr>
<tr><td width="15%"></td><td><tt>print</tt> </td></tr>
<tr><td width="15%"></td><td><tt>grep</tt> </td></tr>
<tr><td width="15%"></td><td><tt>action</tt> </td></tr>
</table>
<p>
————</p><p>
The <tt>template</tt> sub-table contains the following fields:
<br>
<table border="0" summary="template fields">
<tr><td width="15%"></td><td><tt>developer</tt> </td></tr>
<tr><td width="15%"></td><td><tt>company</tt> </td></tr>
<tr><td width="15%"></td><td><tt>mail</tt> </td><td></tr>
<tr><td width="15%"></td><td><tt>initial</tt> </td></tr>
<tr><td width="15%"></td><td><tt>version</tt> </td></tr>
</table>
<p>
————</p><p>
The <tt>project</tt> sub-table *might* contain the following fields:
<br>
<table border="0" summary="template fields">
<tr><td width="15%"></td><td><tt>name</tt> </td><td> -- Name of project.</td></tr>
<tr><td width="15%"></td><td><tt>desc</tt> </td><td> -- Project description.</td></tr>
<tr><td width="15%"></td><td><tt>file</tt> </td><td> -- Project filename.</td></tr>
<tr><td width="15%"></td><td><tt>base</tt> </td><td> -- Base path of project files.</td></tr>
<tr><td width="15%"></td><td><tt>mask</tt> </td><td> -- Semicolon-delimited list of filetypes.</td></tr>
</table>
<p>
<b>* Important:</b> The entire <tt>project</tt> sub-table will be <tt>nil</tt> if there is no open project!<br>
<br><br>
<a name="basename"></a><hr><h3><tt>geany.basename ( pathstr )</tt></h3><p>
Returns the rightmost filename portion of <tt>pathstr</tt>, with the directory portion removed.
</p><br><br>
<hr><a name="batch"></a><h3><tt>geany.batch ( start )</tt></h3><p>
This function marks the beginning or ending of a group of operations<br>
that you want the user to be able to undo in a single step.</p>
<p>
If the <tt><b>start</b></tt> argument is <tt><b>true</b></tt>,
it marks the <i>beginning</i> of a group of operations.</p>
<p>
If the <tt><b>start</b></tt> argument is <tt><b>false</b></tt>,
it marks the <i>ending</i> of a group of operations.
</p><br><br>
<hr><a name="byte"></a><h3><tt>geany.byte ( [position] )</tt></h3><p>
When called with no arguments, returns the numeric value of the character at
the current caret position.</p><p>
When called with a numeric <tt><b>position</b></tt> argument, returns the
value of the character at that position.
</p><br><br>
<hr><a name="caret"></a><h3><tt>geany.caret ( [position] )</tt></h3><p>
When called with no arguments, returns the current caret position.</p>
<p>
When called with a single numeric argument, moves the caret to that position.<br>
Out-of-range values are adjusted to the nearest possible position (i.e. the start or end of the document.)
</p><br><br>
<a name="close"></a><hr><h3><tt>geany.close ( [filename]|[index] )</tt></h3>
<p>
When called with no arguments, closes the currently active document.
</p>
<p>
When called with a numeric argument, closes the file of that document index.
</p>
<p>
When called with a string argument, it will close that named document.
</p>
<p>
If the document has unsaved changes, the user will be prompted to save before closing,<br>
and will also be given the option to cancel the operation. To avoid this, you might <br>
want to consider using the <tt>geany.save()</tt> function beforehand.
</p>
<p>
Returns <tt><b>true</b></tt> if the document was successfully closed, or <tt><b>false</b></tt> otherwise.</p>
<br><br>
<hr><a name="copy"></a><h3><tt>geany.copy ( [content]|[start,stop] )</tt></h3><p>
When called with no arguments, copies the current selection to the clipboard.
</p><p>
When called with a single string argument, copies the contents of that string to the clipboard.
</p>
<p>
When called with two arguments, copies the portion of the current document's text
that lies between the <tt><b>start</b></tt> and <tt><b>stop</b></tt> positions.
(Both positions must be positive numbers.)
</p>
<p>
Returns the number of characters copied, or <tt><b>nil</b></tt> if there is no open document.
</p>
<br><br>
<hr><a name="count"></a><h3><tt>geany.count ()</tt></h3><p>
Returns the number of open documents.
</p><br><br>
<hr><a name="cut"></a><h3><tt>geany.cut ()</tt></h3><p>
Cuts the current selection to the clipboard.
</p>
<p>
Returns the number of characters cut, or <tt><b>nil</b></tt> if there is no open document.
</p><br><br>
<a name="dirlist"></a><hr><h3><tt>geany.dirlist ( path )</tt></h3><p>
Returns an iterator function that will be called once for each entry (file or subdirectory) in the specified folder.
The iterator produces only the name of each entry, and in no particular order.</p><p>
This function will generate an error dialog if the specified folder does not exist or cannot be accessed.
</p><br><br>
<a name="dirname"></a><hr><h3><tt>geany.dirname ( pathstr )</tt></h3><p>
Returns the directory portion of <tt>pathstr</tt>, with the rightmost filename portion removed.
</p><br><br>
<hr><a name="documents"></a><h3><tt>geany.documents ( [doc_id] )</tt></h3><p>
When called with a numeric argument, returns the full path and filename of <br>
the document at the index specified by <tt><b>doc_id</b></tt>.
</p>
<p>
When called with a string argument, returns the numeric index of the document with the<br>
path/filename that matches the <tt><b>doc_id</b></tt> string.<br>
</p>
<p>
Either of the two forms above may also return <tt><b>nil</b></tt> if the argument cannot be matched.</p>
<p>
Note: The <i>index</i> here refers to the editor's internal document array,
and might not be <br>
the same as the notebook tab index, since the tabs can be re-ordered by the user.
</p>
<p>
<br><br>
When called with no arguments, the function returns an iterator to list the full path and filename
of each document currently open in the editor.</p><p>
For example:</p>
<pre>
for filename in geany.documents()
do
print(filename)
end
</pre>
<br><br>
<a name="filename"></a><hr><h3><tt>geany.filename ()</tt></h3><p>
Returns the full path and filename of the current Geany document.</p><p>
If there is no open document, or if the current document is untitled, returns <tt><b>nil</b></tt>.
</p><br><br>
<a name="fileinfo"></a><hr><h3><tt>geany.fileinfo ()</tt></h3><p>
Returns a Lua table containing various information about the current document.<br>
If there is no open document, returns <tt><b>nil</b></tt>.
</p><p>
The returned table contains the following fields:
<table border="0" summary="fileinfo fields">
<tr><td width="5%"></td><td><tt>name</tt> </td><td> -- The filename, without the path.</td></tr>
<tr><td width="5%"></td><td><tt>path</tt> </td><td> -- The full path of the file's directory, including the trailing slash.</td></tr>
<tr><td width="5%"></td><td><tt>ext</tt> </td><td> -- The file extension, including the dot, e.g. "<b>.DLL</b>" or "<b>.txt</b>"</td></tr>
<tr><td width="5%"></td><td><tt>type</tt> </td><td> -- A one-word description of the filetype, e.g. "<b>C</b>" or "<b>Python</b>".</td></tr>
<tr><td width="5%"></td><td><tt>desc</tt> </td><td> -- A longer description of the filetype, e.g. "<b>Lua source file</b>" or "<b>Cascading StyleSheet</b>".</td></tr>
<tr><td width="5%"></td><td><tt>comment_single</tt> </td><td> -- The string used for a single-line comment, e.g. "<b class="desc">//</b>".</td></tr>
<tr><td width="5%"></td><td><tt>comment_open</tt> </td><td> -- The string used to begin a multi-line comment, e.g. "<b class="desc"><!--</b>".</td></tr>
<tr><td width="5%"></td><td><tt>comment_close</tt> </td><td> -- The string used to end a multi-line comment, e.g. "<b class="desc">--></b>".</td></tr>
<tr><td width="5%"></td><td><tt>action</tt> </td><td> -- The action command as executed by the context menu</td></tr>
<!--
<tr><td width="5%"></td><td><tt>compiler</tt> </td><td> -- The command used to compile this type of file.</td></tr>
<tr><td width="5%"></td><td><tt>linker</tt> </td><td> -- The command used to link this type of file.</td></tr>
<tr><td width="5%"></td><td><tt>exec</tt> </td><td> -- The primary command used to execute this type of file.</td></tr>
<tr><td width="5%"></td><td><tt>exec2</tt> </td><td> -- An alternative command used to execute this type of file.</td></tr>
-->
<tr><td width="5%"></td><td><tt>ftid</tt> </td><td> -- The unique numeric filetype identifier, as used by Geany.</td></tr>
<tr><td width="5%"></td><td><tt>encoding</tt> </td><td> -- The file's in-memory encoding. (may differ from the on-disk encoding.)</td></tr>
<tr><td width="5%"></td><td><tt>bom</tt> </td><td> -- <tt><b>true</b></tt> if the file contains a <b>B</b>yte-<b>O</b>rder <b>M</b>arker.</td></tr>
<tr><td width="5%"></td><td><tt>changed</tt> </td><td> -- <tt><b>true</b></tt> if the file has unsaved changes.</td></tr>
<tr><td width="5%"></td><td><tt>readonly</tt> </td><td> -- <tt><b>true</b></tt> if the in-memory document is tagged as read-only.</td></tr>
</table>
<br><br>
<a name="find"></a><hr><h3><tt>geany.find ( phrase, start, stop, options )</tt></h3><p>
Searches within the current document for the string <tt>phrase</tt>, beginning at <br>
the numeric <tt>start</tt> position and ending at the <tt>stop</tt> position.<br>
( To search backwards, specify a <tt>start</tt> value greater than <tt>stop</tt> . )<br><br>
</p><p>
The <tt>options</tt> argument is a table, each element may be one of the following strings:<br>
<table border="0" summary="search options">
<tr><td width="3%"> </td><td width="20%"><tt>
"matchcase"</tt></td><td> -- A match only occurs with text that matches the case of the search string.
</td></tr>
<tr><td> </td><td><tt>
"wholeword" </tt> </td><td> -- A match only occurs if the characters before and after are not word characters.
</td></tr>
<tr><td> </td><td><tt>
"wordstart" </tt> </td><td> -- A match only occurs if the character before is not a word character.
</td></tr>
<tr><td> </td><td><tt>
"regexp" </tt> </td><td> -- The search string should be interpreted as a regular expression.
</td></tr>
<tr><td> </td><td><tt>
"posix" </tt> </td><td> -- Use bare parentheses
<tt><b>(</b></tt>
<tt><b>)</b></tt>
for tagged sections rather than the escaped <tt><b>\(</b></tt> and <tt><b>\)</b></tt>.
</td></tr>
<tr><td colspan="3">
( The empty set <tt><b>{}</b></tt> may also be specified, to search using the default options. )
</td></tr>
</table>
<p>
If a match is found, the function returns the starting and ending positions of the match,<br>
otherwise it returns <tt><b>nil</b>.</tt>
</p><p>
For example, to select the first case-sensitive whole-word match of the string
'<b>foobar</b>' you could use something like this:</p>
<pre>
a,b = geany.find( "foobar", 0, geany.length(), {"wholeword","matchcase"} )
if (a) then
geany.select(a,b)
else
geany.message("Search phrase not found.")
end
</pre><br><br>
<a name="fullpath"></a><hr><h3><tt>geany.fullpath ( filename )</tt></h3><p>
Returns the fully canonicalized form of the path to an <i>existing</i> named file, or <tt>nil</tt> if the path could not be found.
</p><br><br>
<a name="height"></a><hr><h3><tt>geany.height ()</tt></h3><p>
Returns the total number of lines in the current document.
</p><br><br>
<a name="keycmd"></a><hr><h3><tt>geany.keycmd ( command )</tt></h3><p>
Activates (runs) one of Geany's built-in menu commands.</p><p>
The <tt>command</tt> argument should be one the string constants defined in the
"<tt>glspi_keycmd.h</tt>" header from the plugin sources.
For example, to display Geany's preferences dialog, you could use:</p><p>
<tt> geany.keycmd("MENU_PREFERENCES")</tt>
</p>
<p>
This function raises an error if the command argument is invalid.
</p><br><br>
<a name="keygrab"></a><hr><h3><tt>geany.keygrab ( [prompt] )</tt></h3>
<p>Intercepts the next keyboard key pressed, preventing the editor from
receiving that keyboard event.</p>
<p>This function returns the value of the pressed key as a string.
Alphanumeric keys will return their keyboard value,
such as <tt>"a"</tt> or <tt>"1"</tt>,
while other keys may return a string describing the key,
such as <tt>"Return"</tt> or <tt>"Escape"</tt>.</p>
<p>Only one instance of this function may be active at a time.
This function will return <tt><b>nil</b></tt> if another instance is already waiting for a keypress.</p>
<p>If the optional <tt>prompt</tt> string argument is present, its text will be shown
in a "calltip" near the upper left-hand area of the current document.
The prompt will not be shown if no document is open.</p>
<p>Notes:
<ul>
<li>This function should work on non-US keyboards, although this has not been tested.
Scripts written for one keyboard may not be portable to other systems.</li>
<li>Key combinations with the modifier keys <b>[Ctrl]</b> or <b>[Alt]</b>
are not supported.</li>
<li>Detection of the <b>[Shift]</b> key state is unreliable.</li>
<li>Keys may be dropped when this function is called in rapid succession (as in a loop). For best results, use of this function should be confined to detecting single "lowercase" key presses.</li>
<li>Consult <tt>gdk/gdkkeysyms.h</tt> in the GTK sources for an idea of key names.</li>
<li>This function was primarily intended for assigning "chained" sets of hot key
options, in conjunction with user-defined <a href="geanylua-keys.html">keybindings</a>.</li>
</ul>
</p>
<br><br>
<a name="launch"></a><hr><h3><tt>geany.launch ( program [, arg1 [, arg2, ...]] )</tt></h3><p>
Executes the external application specified by <tt>program</tt>,
passing any additional arguments to its command line.
</p>
<p>
Returns <tt>true</tt> if the process was succesfully created, else it returns <tt>false</tt> plus an error message.</p>
<p>
For example:<br><tt>
local ok,msg = geany.launch("firefox", "http://www.yahoo.com/")<br>
if not ok then geany.message(msg) end</tt>
</p>
<p>
This function returns immediately, regardless of the status of the newly-created process.
If you need to wait for a process to complete before returning,
use Lua's built-in <tt>os.execute()</tt> function instead.
</p>
<p>Note that using this function on MS-Windows might require installing the
"<b><tt>gspawn-win32-helper.exe</tt></b>" program somewhere in your <tt>PATH</tt>.
( It is included in the GTK/GLib package. )</p>
<br><br>
<a name="length"></a><hr><h3><tt>geany.length ()</tt></h3><p>
Returns the text length of the current document.
</p><br><br>
<a name="lines"></a><hr><h3><tt>geany.lines ( [index] )</tt></h3><p>
When called with one argument, returns a string containing the text at
the specified line number of the current document.<br>
It may also return <tt><b>nil</b></tt> if there is no open document,
or if the specified <tt><b>index</b></tt> is outside the range of lines.
</p><p>
When called without any arguments, it returns an iterator that steps
through each line of the current document. <br>
So you can use it like this:<pre>
for line in geany.lines()
do
print(line)
end
</pre>
<br><br>
<a name="match"></a><hr><h3><tt>geany.match ( [position] )</tt></h3><p>
Attempts to find a corresponding matching brace from the given <tt><b>position</b></tt> of one brace.<br>
( If the <tt><b>position</b></tt> argument is omitted, the current caret position is assumed. )
</p>
<p>The brace characters handled are: <tt><b> () [] {} <></b></tt></p>
<p> The search is forwards from an opening brace and backwards from a closing brace.<br>
If the character at <tt><b>position</b></tt> is not a brace character, or a matching brace cannot be found,<br>
the return value is -1. Otherwise, the return value is the position of the matching brace.
</p><br><br>
<a name="navigate"></a><hr><h3><tt>geany.navigate ( mode, count [,extend [,rect]] )</tt></h3><p>
Moves the caret incrementally.</p>
<p>
The <tt><b>mode</b></tt> argument must be one of the following strings:
<ul>
<li><tt>"char"</tt> -- Move by characters.</li>
<li><tt>"part"</tt> -- Move by segments in <big>MixedCase</big> or <big>under_score</big> style identifiers.</li>
<li><tt>"word"</tt> -- Move by words.</li>
<li><tt>"edge"</tt> -- Move to beginning or end of current line.</li>
<li><tt>"line"</tt> -- Move up or down by lines.</li>
<li><tt>"para"</tt> -- Move up or down by paragraphs.</li>
<li><tt>"page"</tt> -- Move up or down by pages.</li>
<li><tt>"body"</tt> -- Move to the beginning or end of the entire document.</li>
</ul>
<p>
If the numeric <tt><b>count</b></tt> argument is <i>positive</i>, the caret is moved <i>forward</i> or <i>down</i> by that many steps.<br>
If it is <i>negative</i>, the caret is moved <i>backward</i> or <i>up</i> by that many steps.<br>
( If it is <i>zero</i> there is not much point in using this function. )<br>
There is also no point in using a magnitude greater than <i>one</i> for the <tt>"edge"</tt> or <tt>"body"</tt> modes.
</p>
<p>
If the optional boolean <tt><b>extend</b></tt> argument is <tt><b>true</b></tt>,
the selection is expanded or contracted to the new caret position,
similar to holding down the <big>[Shift]</big> key when navigating with the keyboard.
</p><p>
If the optional boolean <tt><b>rect</b></tt> argument is also <tt><b>true</b></tt>,
the selection is treated as <i>rectangular</i> rather than <i>linear</i>.<br>
( Rectangular selection is only supported for <tt>char</tt>, <tt>edge</tt>,
<tt>line</tt>, or <tt>page</tt> modes. )
</p>
<br><br>
<a name="newfile"></a><hr><h3><tt>geany.newfile ( [filename [, filetype] )</tt></h3><p>
<p>When called with no arguments, creates a new, untitled document.</p>
<p>When called with one argument, creates a new document with the specified <tt>filename</tt>.</p>
<p>When called with two argument, creates a new document with the specified
<tt>filename</tt> and <tt>filetype</tt> (a one-word description of the filetype,
e.g. "C" or "Python".). If you want untitled document then set <tt>filename</tt> as <tt>""</tt>.</p>
<p>So you can use it like this:</p>
<pre>local s = geany.selection();
if (s ~= "") and (s ~= nil) then
local t = geany.fileinfo();
geany.newfile("", t.type);
geany.selection(s);
end</pre>
<p>(create a new, untitled document, with selected text and auto set filetype).</p>
<br><br>
<a name="open"></a><hr><h3><tt>geany.open ( [filename]|[index] )</tt></h3><p>
When called with no arguments, reloads the currently active document from disk.
</p><p>
When called with a numeric argument, reloads the file of that document index.
</p><p>
When called with a string argument, it will reload that filename if it is already open,
or otherwise it will open it in a new tab. <br>
It will not create a non-existent file, for that you need to use <tt>geany.newfile()</tt>
</p>
<p>
Returns the <i>one-based</i> document index on success,
or <i>zero</i> if the document could not be opened or reloaded.</p>
<br><br>
<a name="optimize"></a><hr><h3><tt>geany.optimize ()</tt></h3><p>
Disables the Lua interpreter's "debug hook", the thing that
allows the plugin to track line number information and elapsed time.</p><p>
The advantage of calling <tt>optimize()</tt> is that a lengthy, CPU-intensive
script can sometimes run much faster.
</p><p>
The disadvantage is that you lose the line number information that helps in
debugging your script, and the built-in protection against things like endless loops.
For this reason you should only use this function if you really need it, and
only when you are reasonably sure that your script doesn't contain any errors.
</p><p>For best results this function should be called at the very
beginning of the script.
</p>
<br><br>
<a name="paste"></a><hr><h3><tt>geany.paste ()</tt></h3><p>
Pastes the text from the clipboard into the active document at the current caret position,<br>
replacing any current selection.
</p><p>
Returns <tt><b>nil</b></tt> if there is no open document,
or if the document is marked read-only.</p><p>
Otherwise it returns the effective change in the document's size. <br>
( Which may actually be negative, if the clipboard content size is less than the prior selection. )
</p>
<br><br>
<a name="reloadconf"></a><hr><h3><tt>geany.reloadconf ()</tt></h3>
<p>This function will cause Geany to reload most of it's configuration files without restarting
(as menu item <b><i>Tools-><u>R</u>eload Configuration</i></b>).</p>
<!-- The list was copied from https://geanypy.readthedocs.io/en/latest/api.html#geany.reload_configuration -->
<p>Currently the following files are reloaded:</p>
<ul>
<li>all template files;</li>
<li>new file templates;</li>
<li>the New (with template) menus will be updated;</li>
<li>Snippets (snippets.conf);</li>
<li>filetype extensions (filetype_extensions.conf);</li>
<li><i>setting</i>s and <i>build_settings</i> sections of the filetype definition files.</li>
</ul>
<p>This function which can be used if you updated one of these configuration files, or modified or added template files.</p>
<br><br>
<a name="rescan"></a><hr><h3><tt>geany.rescan ()</tt></h3><p>
Scans the scripts folder, rebuilds the <b><i>Tools-><u>L</u>ua Scripts</i></b> menu,
and re-initializes the GTK accelerator group (keybindings) associated with the plugin.
</p><br><br>
<a name="rowcol"></a><hr><h3><tt>geany.rowcol ( [position]|[line,column] )</tt></h3><p>
This function translates between line/column coordinates and linear position (offset from beginning of document).<br>
</p>
<p>The syntax takes three forms:</p>
<ul>
<li>
With <i>no</i> arguments, it returns the rectangular coordinates of the current caret position:<br>
<tt> line, column = geany.rowcol()</tt><br>
( Note that in Lua a single function call like the one above returns both values! )<br><br>
</li>
<li>
With <i>one</i> argument, it it returns the rectangular coordinates of the specified <tt><b>position</b></tt>
argument:<br>
<tt> line, column = geany.rowcol(position)</tt><br><br>
</li>
<li>
With <i>two</i> arguments, it translates from the given <tt><b>line</b></tt> and <tt><b>column</b></tt>
to the linear position:<br>
<tt> position = geany.rowcol(line,column)</tt>
</li>
</ul>
<p>
Out-of-range arguments are adjusted to the nearest valid possibility.
</p><br><br>
<a name="save"></a><hr><h3><tt>geany.save ( [filename]|[index] )</tt></h3><p>
When called with no arguments, saves the currently active document to disk.
</p><p>
When called with a numeric argument, saves the file of that document index.
</p><p>
When called with a string argument, it will save that named document ( That is, of course, if it is open. )
</p>
<p>
Returns <tt><b>true</b></tt> on success, or <tt><b>false</b></tt> if the document could not be saved.</p>
<br><br>
<a name="scintilla"></a><hr><h3><tt>geany.scintilla ( msg_id [, wparam [, lparam]] )</tt></h3><p>
<i>Power users only!</i>
</p>
<p>
Sends a <tt><b>SCI_*</b></tt> message directly to the Scintilla widget of the active document.</p>
<p>
The <tt><b>msg_id</b></tt> can be a numeric value, or a case-insensitive string with or
without the <tt>"SCI_"</tt> prefix,
such as <tt>"SCI_POSITIONFROMPOINT"</tt>, <tt>"POSITIONFROMPOINT"</tt>, or <tt>"PositionFromPoint"</tt>.
</p><p>
The wparam, lparam, and return types depend on the particular message, based on the
interface described in the "<tt><small>Scintilla.iface</small></tt>" file from the Scintilla sources.
</p><p>
For API calls which expect a pre-allocated char buffer as the lparam, the allocation is
automatically managed
by the GeanyLua module, your lparam is ignored, and the return value is a Lua string.
In cases where the length is specified
in the wparam, the null terminator is not counted - if you ask for 3 chars, you get 3 chars.
</p><p>
Currently only string, numeric, and boolean types are supported, any API call that
expects or returns complex types will result in an error. This function tries hard to
protect from garbage being passed to
Scintilla, but ultimately <i>you</i> are expected to know what you're doing!
</p><br><br>
<a name="select"></a><hr><h3><tt>geany.select ( [[start,] stop]] )</tt></h3><p>
When called with no arguments, returns the beginning <b><i>and</i></b> ending points of
the current selection, in the form:<br>
<tt>
start, stop = geany.select()
</tt><br>
( Note that in Lua a single function call like the one above returns both values! )</p>
<p>
To find out if the selection is rectangular, test the
boolean variable <tt><b>geany.rectsel</b></tt> immediately after this call.
</p>
<p><br>
If this function is called with two arguments, it creates a new selection in
the current document.
<br> The selection is <i>anchored</i> at the <tt><b>start</b></tt>
position, and <i>extended</i> to the <tt><b>stop</b></tt> position.</p><p>
The boolean variable <tt><b>geany.rectsel</b></tt> can be set prior to this
call to control
whether this selection is created in normal or rectangular mode.
</p>
<p><br>
If called with one argument, the caret is moved to that position, but no selection is created,<br>
and any existing selection is lost.
</p>
<p>
<br>
Note that in all cases, the value of <tt><b>stop</b></tt> is considered to be
the end of the selection where the caret is located.</p><p>
So, if <tt><b>stop</b></tt> is less than <tt><b>start</b></tt>, the caret is postioned
at the <i>beginning</i> of the selection, <br>similar to a selection created by
dragging the mouse <i>backwards</i> in the document.</p>
<p>
<b>Hint:</b> To select the entire document, you can use:
<tt>geany.select( 0, geany.length() )</tt>
</p><br><br>
<a name="selection"></a><hr><h3><tt>geany.selection ( [content] )</tt></h3><p>
When called with no arguments, returns the selected text in the current Geany
document as a string. <br>
Returns the empty string if no text is selected, or <tt><b>nil</b></tt>
if there is no open document.
</p><p>When called with one argument, the selected text of the current document
will be replaced with the specified <tt>content</tt>
string.<br>
If no text is currently selected, the text will be inserted at the current
(caret) position.
</p><br><br>
<a name="settype"></a><hr><h3><tt>geany.settype ( filetype )</tt></h3>
<p>Will change the current file type. Use one-word description of the
file type, e.g. "C" or "Python" (see the "<tt>filetype_extensions.conf</tt>"
file).
</p><br><br>
<a name="signal"></a><hr><h3><tt>geany.signal ( widget, signal )</tt></h3><p>
Emits a GTK signal to a given widget in the Geany user interface.</p><p>
The <tt>widget</tt> argument is a string identifying the widget by its Glade <tt><b>"id"</b></tt> attribute.<br>
The <tt>signal</tt> argument is a string identifying the signal to be emitted.
</p><p>
This function was primarily intended for activating Geany's builtin menu commands.<br>
For instance, to display the file open dialog you could do:<br>
<tt> geany.signal("menu_open1", "activate")</tt>
</p><p>
The function does not return a value, but may trigger an error message if the
widget name is not found or the signal name is not valid for the specified widget.
Note that it is generally easier and more reliable to use the <tt>keycmd()</tt> function whenever possible.
</p><br><br>
<a name="stat"></a><hr><h3><tt>geany.stat( filename [, lstat] )</tt></h3><p>
Returns a table providing some (limited) information about the specified file.<br>
If the information could not be obtained, the function returns <tt>nil</tt> plus an string describing the reason for failure.
</p>
<p>
If the file is a symbolic link, and the optional <tt>lstat</tt> argument is <tt>true</tt>, the
information is returned about the link itself, otherwise the table provides
information about the file that the link points to.
</p><p>
The returned table contains the following fields:
<table border="0" summary="stat table fields">
<tr><td width="5%"></td><td><tt>size </tt></td><td> -- The size of the file, in bytes.</td></tr>
<tr><td width="5%"></td><td><tt>time </tt></td><td> -- Modification time, in seconds from the epoch.</td></tr>
<tr><td width="5%"></td><td><tt>type </tt></td><td> -- A single-character string that denotes the type of file (see below)</td></tr>
<tr><td width="5%"></td><td><tt>read </tt></td><td> -- <tt>true</tt> if the effective user can read from the file.</td></tr>
<tr><td width="5%"></td><td><tt>write</tt></td><td> -- <tt>true</tt> if the effective user can modify the file.</td></tr>
<tr><td width="5%"></td><td><tt>exec </tt></td><td> -- <tt>true</tt> if the effective user can execute the file.</td></tr>
</table>
<p><br>
The <tt>type</tt> field contains one of the following values:
<table border="0" summary="stat table type field values">
<tr><td width="5%"></td><td><tt>"b" </tt></td><td> -- a block-oriented device.</td></tr>
<tr><td width="5%"></td><td><tt>"c" </tt></td><td> -- a character-special device.</td></tr>
<tr><td width="5%"></td><td><tt>"d" </tt></td><td> -- a directory.</td></tr>
<tr><td width="5%"></td><td><tt>"f" </tt></td><td> -- a FIFO or named pipe.</td></tr>
<tr><td width="5%"></td><td><tt>"l" </tt></td><td> -- a symbolic link.</td></tr>
<tr><td width="5%"></td><td><tt>"r" </tt></td><td> -- a regular file.</td></tr>
<tr><td width="5%"></td><td><tt>"s" </tt></td><td> -- a socket.</td></tr>
</table>
<p>
Note that this function does not support symbolic links or ACL permissions on MS-Windows.
</p><br><br>
<a name="status"></a><hr><h3><tt>geany.status ( message )</tt></h3>
<p>
Sends a message to the status tab of the messages window.
</p><p>
The <tt>message</tt> argument is the string to be displayed.
</p><p>
This function's purpose is to provide a user-friendly way to display messages without using the dialog popup.
</p><p>
This function does not return a value.</p><br><br>
<a name="text"></a><hr><h3><tt>geany.text ( [content] )</tt></h3><p>
When called with no arguments, returns the entire text of the currently
active Geany document as a string.<br>( Returns <tt><b>nil</b></tt>
if there is no open document.)
</p><p>
When called with one argument, the entire text of the current
document is replaced with the specified <tt>content</tt> string.
</p><br><br>
<a name="timeout"></a><hr><h3><tt>geany.timeout ( seconds )</tt></h3><p>
Attempts to control the maximum time allowed, in whole seconds, for the current script to
finish execution.</p><p>
By default, scripts are allowed 15 seconds to complete, but if your script needs
more time, you can increase it here.
</p><p>
Note that the interpreter is only able to trigger this "timeout exceeded" error when it is actually processing instructions.
This provides protection against things like accidentally creating an endless loop,
but it might still be possible to create a script that hangs indefinitely. ( For instance if
you call <tt>io.read()</tt> without access to a terminal. )</p><p>
The internal timer is paused whenever one of the dialog box functions is called,
to allow the user time to respond.
</p><p>
Setting the timeout to zero will disable it completely, that is, the script will never time out.
</p><p><br><br>
<a name="wkdir"></a><hr><h3><tt>geany.wkdir ( [folder] )</tt></h3><p>
When called with no arguments, returns the current working directory.</p>
<p>
When called with one argument, tries to change into that <tt>folder</tt>,
and returns <tt>true</tt> on sucess, or <tt>false</tt> plus an error message
on failure.
</p><br><br>
<a name="word"></a><hr><h3><tt>geany.word ( [position] )</tt></h3><p>
When called with no arguments, returns the word at the current caret position.
</p><p>
When called with one argument, returns the word at the specified
<tt><b>position</b></tt>.
</p><p>
This function can return an empty string if the position is not touching
a character that is considered to be part of a word. You can modify this
set of characters in the <tt><b>geany.wordchars</b></tt> variable.
</p><br><br>
<a name="xsel"></a><hr><h3><tt>geany.xsel ( [text] )</tt></h3><p>
When called with no arguments, returns the text-based contents of the primary X selection.
</p><p>
When called with one argument, assigns that <tt>text</tt> as the contents of the primary X selection.
</p><p>
This function is only valid for X-Window environments, on MS-Windows, it does nothing.
</p><br><br>
<a name="yield"></a><hr><h3><tt>geany.yield ()</tt></h3><p>
Temporarily returns control to the IDE, to allow user interface elements to
be refreshed/repainted during lengthy script operations.
</p><p>Since most scripts will probably have a run time of less than a couple of seconds,
you will likely never need this function. But if you do, it should be used with caution,
since it allows Geany's state to be changed during script execution. This could have
unpleasant consequences, for instance if the user closes a document that the script is referencing.
</p>
<br><br>
<br><br>
<hr><hr>
<!-- Dialog functions -->
<h3> Dialog functions</h3>
<hr>
<a name="choose"></a><hr><h3><tt>geany.choose ( prompt, items )</tt></h3><p>
Displays a dialog box to allow the user to choose from a list of items. </p><p>
The <tt>prompt</tt> argument string will display a message above the list box
to explain the request.</p><p>
The <tt>items</tt> argument is a Lua table, each element of the table must be
a string.
</p><p>
The function returns the selected item as a string:</p>
<ul>
<li>If the <b>OK</b> button is clicked,
<li>If the [Return] key is pressed while the item list is active.
<li>If the user double-clicks an item in the list.
</ul>
<p>
If the <b>Cancel</b> button is clicked, or if the dialog is is dismissed by
some other means, e.g. by pressing the [Escape] key, the function returns
<tt><b>nil</b></tt>.
</p><br><br>
<a name="confirm"></a><hr><h3><tt>geany.confirm ( title, question, default )</tt></h3><p>
Displays a simple yes-or-no style dialog box to ask the specified
<tt>question</tt>.<br>
The <tt>title</tt> argument is displayed as a bold-faced title for the dialog.
</p><p>
Returns <tt><b>true</b></tt> if the 'Yes' button is clicked,
or <tt><b>false</b></tt> if the 'No' button is
clicked.</p><p>
If the dialog is dismissed by some other means, e.g. by pressing the
[Escape] key, <br>the function will return the boolean value specified by the
<tt>default</tt> argument. </p>
<p>All three arguments are required, but you can pass <tt><b>nil</b></tt>
as the first argument to suppress the title.
</p><br><br>
<a name="input"></a><hr><h3><tt>geany.input ( [prompt] [,default] )</tt></h3><p>
Displays an input dialog to prompt the user for some text. </p><p>
The <tt>prompt</tt> argument string will display a message above the entry box
to explain what input is requested.</p><p>
The <tt>default</tt> argument string, if present, will add some pre-selected
text into the entry area.</p><p>
If the <b>OK</b> button is clicked, or if the [Return] key is pressed while the
entry field is active, the function will return the contents of the entry field
as a string.</p><p>
If the <b>Cancel</b> button is clicked, or if the dialog is is dismissed by
some other means, e.g. by pressing the
[Escape] key, the function returns <tt><b>nil</b></tt>.
</p><br><br>
<a name="message"></a><hr><h3><tt>geany.message ( [title,] message )</tt></h3><p>
When called with one argument, displays a simple dialog box containing
the specified <tt>message</tt> string. </p>
<p>When called with two arguments, the <tt>title</tt> argument is displayed as
a bold-faced title,
and the <tt>message</tt> argument will be the message text.
</p><br><br>
<hr>
<a name="pickfile"></a><hr><h3><tt>geany.pickfile ( [mode [,path [,filter]]] )</tt></h3>
<p>
Displays a dialog that allows the user to select a filename.</p><p>
All three arguments are optional, but you can pass <tt>nil</tt> as a placeholder to
use the default value for any of the arguments.</p><p>
The <tt>mode</tt> argument specifies the type of dialog, and must be one
of two strings, either <tt>"open"</tt> or <tt>"save"</tt>.<br>
( passing <tt>nil</tt> is the same as <tt>"open"</tt> )<br>
In <tt>"save"</tt> mode the function will issue an overwrite confirmation prompt if the targeted file already exists.
</p><p>
The <tt>path</tt> string argument sets the initial directory for the dialog, or <tt>nil</tt>
to use the current directory.<br>
If the last (rightmost) element of the path is an existing directory, the path will be used as-is,
otherwise the last element is assumed to be a filename (whether it actually exists on disk or not)
and will be parsed off and used as the suggested filename for the dialog.
</p><p>
The <tt>filter</tt> argument controls which files are displayed,
or it can be <tt>nil</tt> to display all files.<br>
It is a string consisting of pairs of substrings, where each substring
is separated by the pipe "<tt>|</tt>" symbol.<br>
The first element in each pair of substrings is the human-readable description of the filetype,<br>
and the second element of the
pair is a set of semicolon-delimited shell wildcards to filter on.<br>
For instance, a filter for web files might look like:<br>
<tt><b> "HTML files|*.html;*.htm|PHP files|*.php;*.php4|Style sheets|*.css"</b></tt>
<br>
( Those familiar with
<a href="http://en.wikipedia.org/wiki/Borland_Delphi">Borland Delphi</a>
might recognize this syntax from the
<a href="http://www.delphibasics.co.uk/RTL.asp?Name=TOpenDialog">TOpenDialog.Filter</a> property. )
</p>
<p><br>
Note that this function does not actually open or save anything, it merely returns the
full path and filename of the selected file, or <tt>nil</tt> if the user cancels the dialog.</p>
<br><br>
<hr>
<hr>
<h3>Module level variables</h3>
<hr>
<a name="wordchars"></a><hr><h3><tt>geany.wordchars</tt></h3><p>
This variable determines which characters are considered to be part of a word.
</p><p>
It is used by the <tt><b>geany.word()</b></tt> function and may also be reset by that
function if its current value cannot be interpreted as a string.</p><p>
The default value is:<br><tt>
<big> <big>
"_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"</big> </big></tt>
<p>
If you need to modify this string, you may want to save a copy of the original
so you can restore it later.
</p><br><br>
<a name="rectsel"></a><hr><h3><tt>geany.rectsel</tt></h3><p>
This variable controls and/or returns the "selection mode" of the current document.
</p><p>
It is used by the <tt><b>geany.select()</b></tt> function and is adjusted
when the selection is queried, and examined when the selection is set. <br>
It may also be reset if its current value cannot be interpreted as a boolean.</p>
<p>
A value of <tt><b>true</b></tt> represents a rectangular selection
and <tt><b>false</b></tt> represents the normal linear selection mode.
</p><br><br>
<a name="banner"></a><hr><h3><tt>geany.banner</tt></h3><p>
This variable controls the window title for dialogs displayed by the current script.
</p><p>
It may be reset by the dialog functions if its value cannot be interpreted as a string.
</p><br><br>
<a name="caller"></a><hr><h3><tt>geany.caller</tt></h3><p>
This variable stores the internal index of the document that triggered one of the <a href="./geanylua-intro.html#events">event scripts</a>.</p>
<p>
For example, to print the filename of a file that has just been saved, you could put<br>
this line in your <b>~/.geany/plugins/lua/events/saved.lua</b> script file:</p><p>
<tt> print(geany.documents(geany.caller))</tt>
</p><p>
This variable is only relevant for the opened, created, activated, and saved event scripts,
for all other scripts it is set to zero.<br>
</p><br><br>
<a name="dirsep"></a><hr><h3><tt>geany.dirsep</tt></h3><p>
This variable returns the default filesystem path separator.<br>
( A forward slash <tt><b>/</b></tt> for Unix or
a backslash <tt><b>\</b></tt> for MS-Windows. )
</p><br><br>
<a name="project"></a><hr><h3><tt>geany.project</tt></h3><p>
This variable provides a reference to the <a href="geanylua-keyfile.html">GKeyFile</a> object
for the project that triggered a
proj-* <a href="./geanylua-intro.html#events">event script</a>.</p>
<p>
The information stored in the object can be manipulated using the <tt>keyfile</tt> module.<br>
For example, to print the description of the project that has just been opened, you could put<br>
this line in your <b>~/.geany/plugins/lua/events/proj-opened.lua</b> script file:</p><p>
<tt> print(keyfile.value(geany.project, "project", "description"))</tt>
</p><p>
This variable is only relevant for the project-based event scripts, for all other scripts it is set to <tt>nil</tt>.<br>
</p><br><br>
<a name="script"></a><hr><h3><tt>geany.script</tt></h3><p>
This variable stores the full path and filename of the active script.</p>
<br><br>
<hr>
<br><br>
<div align="right"><small>© 2007-2008 <i>Jeff Pohlmeyer </i> </small></div>
<br><br>
<br><br><br><br>
<br><br><br><br>
<br><br><br><br>
<br><br><br><br>
</body>
</html>
|