1 .. |(version)| replace:: 1.24
2 .. -*- reStructuredText -*-
8 -------------------------
9 A fast, light, GTK+ IDE
10 -------------------------
12 :Authors: Enrico Tröger,
22 This document is distributed under the terms of the GNU General Public
23 License as published by the Free Software Foundation; either version 2
24 of the License, or (at your option) any later version. A copy of this
25 license can be found in the file COPYING included with the source code
26 of this program, and also in the chapter `GNU General Public License`_.
40 Geany is a small and lightweight Integrated Development Environment. It
41 was developed to provide a small and fast IDE, which has only a few
42 dependencies on other packages. Another goal was to be as independent
43 as possible from a particular Desktop Environment like KDE or GNOME -
44 Geany only requires the GTK2 runtime libraries.
46 Some basic features of Geany:
50 * Autocompletion of symbols/words
51 * Construct completion/snippets
52 * Auto-closing of XML and HTML tags
54 * Many supported filetypes including C, Java, PHP, HTML, Python, Perl,
58 * Build system to compile and execute your code
59 * Simple project management
67 You can obtain Geany from http://www.geany.org/ or perhaps also from
68 your distribution. For a list of available packages, please see
69 http://www.geany.org/Download/ThirdPartyPackages.
76 Geany is distributed under the terms of the GNU General Public License
77 as published by the Free Software Foundation; either version 2 of
78 the License, or (at your option) any later version. A copy of this
79 license can be found in the file COPYING included with the source
80 code of this program and in the chapter, `GNU General Public License`_.
82 The included Scintilla library (found in the subdirectory
83 ``scintilla/``) has its own license, which can be found in the chapter,
84 `License for Scintilla and SciTE`_.
91 This documentation is available in HTML and text formats.
92 The latest version can always be found at http://www.geany.org/.
94 If you want to contribute to it, see `Contributing to this document`_.
106 You will need the GTK (>= 2.16.0) libraries and their dependencies
107 (Pango, GLib and ATK). Your distro should provide packages for these,
108 usually installed by default. For Windows, you can download an installer
109 from the website which bundles these libraries.
115 There are many binary packages available. For an up-to-date but maybe
116 incomplete list see http://www.geany.org/Download/ThirdPartyPackages.
122 Compiling Geany is quite easy.
123 To do so, you need the GTK (>= 2.16.0) libraries and header files.
124 You also need the Pango, GLib and ATK libraries and header files.
125 All these files are available at http://www.gtk.org, but very often
126 your distro will provide development packages to save the trouble of
127 building these yourself.
129 Furthermore you need, of course, a C and C++ compiler. The GNU versions
130 of these tools are recommended.
132 Autotools based build system
133 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
135 The Autotools based build system is very mature and has been well tested.
136 To use it, you just need the Make tool, preferably GNU Make.
138 Then run the following commands::
151 Waf based build system
152 ^^^^^^^^^^^^^^^^^^^^^^
154 The Waf build system is still quite young and under heavy development but already in a
155 usable state. In contrast to the Autotools system, Waf needs Python. So before using Waf, you need
156 to install Python on your system.
157 The advantage of the Waf build system over the Autotools based build system is that the whole
158 build process might be a bit faster. Especially when you use the Waf
159 cache feature for repetitive builds (e.g. when changing only a few source files
160 to test something) will become much faster since Waf will cache and re-use the
161 unchanged built files and only compile the changed code again. See `Waf Cache`_ for details.
162 To build Geany with Waf as run::
174 The Waf build system has a nice and interesting feature which can help to avoid
175 a lot of unnecessary rebuilding of unchanged code. This often happens when developing new features
176 or trying to debug something in Geany.
177 Waf is able to store and retrieve the object files from a cache. This cache is declared
178 using the environment variable ``WAFCACHE``.
179 A possible location of the cache directory could be ``~/.cache/waf``. In order to make use of
180 this, you first need to create this directory::
182 $ mkdir -p ~/.cache/waf
184 then add the environment variable to your shell configuration (the following example is for
185 Bash and should be adjusted to your used shell)::
187 export WAFCACHE=/home/username/.cache/waf
189 Remember to replace ``username`` with your actual username.
191 More information about the Waf cache feature are available at
192 http://code.google.com/p/waf/wiki/CacheObjectFiles.
196 You should be careful about the size of the cache directory as it may
197 grow rapidly over time.
198 Waf doesn't do any cleaning or other house-keeping of the cache yet, so you need to keep it
200 An easy way to keep it clean is to run the following command regularly to remove old
203 $ find /home/username/.cache/waf -mtime +14 -exec rm {} \;
205 This will delete all files in the cache directory which are older than 14 days.
207 For details about the ``find`` command and its options, check its manual page.
212 The configure script supports several common options, for a detailed
221 (depending on which build system you use).
223 You may also want to read the INSTALL file for advanced installation
226 * See also `Compile-time options`_.
228 Dynamic linking loader support and VTE
229 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
230 In the case that your system lacks dynamic linking loader support, you
231 probably want to pass the option ``--disable-vte`` to the ``configure``
232 script. This prevents compiling Geany with dynamic linking loader
233 support for automatically loading ``libvte.so.4`` if available.
237 If there are any errors during compilation, check your build
238 environment and try to find the error, otherwise contact the mailing
239 list or one the authors. Sometimes you might need to ask for specific
240 help from your distribution.
245 If you want to find Geany's system files after installation you may
246 want to know the installation prefix.
248 Pass the ``--print-prefix`` option to Geany to check this - see
249 `Command line options`_. The first path is the prefix.
251 On Unix-like systems this is commonly ``/usr`` if you installed from
252 a binary package, or ``/usr/local`` if you build from source.
255 Editing system files is not necessary as you should use the
256 per-user configuration files instead, which don't need root
257 permissions. See `Configuration files`_.
267 You can start Geany in the following ways:
269 * From the Desktop Environment menu:
271 Choose in your application menu of your used Desktop Environment:
272 Development --> Geany.
274 At Windows-systems you will find Geany after installation inside
275 the application menu within its special folder.
277 * From the command line:
279 To start Geany from a command line, type the following and press
287 The Geany window is shown in the following figure:
289 .. image:: ./images/main_window.png
291 The workspace has the following parts:
294 * An optional toolbar.
295 * An optional sidebar that can show the following tabs:
297 * Documents - A document list, and
298 * Symbols - A list of symbols in your code.
300 * The main editor window.
301 * An optional message window which can show the following tabs:
303 * Status - A list of status messages.
304 * Compiler - The output of compiling or building programs.
305 * Messages - Results of 'Find Usage', 'Find in Files' and other actions
306 * Scribble - A text scratchpad for any use.
307 * Terminal - An optional terminal window.
311 Most of these can be configured in the `Interface preferences`_, the
312 `View menu`_, or the popup menu for the relevant area.
314 Additional tabs may be added to the sidebar and message window by plugins.
316 The position of the tabs can be selected in the interface preferences.
318 The sizes of the sidebar and message window can be adjusted by
319 dragging the dividers.
324 ============ ======================= =================================================
325 Short option Long option Function
326 ============ ======================= =================================================
327 *none* +number Set initial line number for the first opened file
328 (same as --line, do not put a space between the + sign
329 and the number). E.g. "geany +7 foo.bar" will open the
330 file foo.bar and place the cursor in line 7.
332 *none* --column Set initial column number for the first opened file.
334 -c dir_name --config=directory_name Use an alternate configuration directory. The default
335 configuration directory is ``~/.config/geany/`` and that
336 is where ``geany.conf`` and other configuration files
339 *none* --ft-names Print a list of Geany's internal filetype names (useful
340 for snippets configuration).
342 -g --generate-tags Generate a global tags file (see
343 `Generating a global tags file`_).
345 -P --no-preprocessing Don't preprocess C/C++ files when generating tags.
347 -i --new-instance Do not open files in a running instance, force opening
348 a new instance. Only available if Geany was compiled
349 with support for Sockets.
351 -l --line Set initial line number for the first opened file.
353 *none* --list-documents Return a list of open documents in a running Geany
355 This can be used to read the currently opened documents in
356 Geany from an external script or tool. The returned list
357 is separated by newlines (LF) and consists of the full,
358 UTF-8 encoded filenames of the documents.
359 Only available if Geany was compiled with support for
362 -m --no-msgwin Do not show the message window. Use this option if you
363 do not need compiler messages or VTE support.
365 -n --no-ctags Do not load symbol completion and call tip data. Use this
366 option if you do not want to use them.
368 -p --no-plugins Do not load plugins or plugin support.
370 *none* --print-prefix Print installation prefix, the data directory, the lib
371 directory and the locale directory (in that order) to
372 stdout, one line each. This is mainly intended for plugin
373 authors to detect installation paths.
375 -r --read-only Open all files given on the command line in read-only mode.
376 This only applies to files opened explicitly from the command
377 line, so files from previous sessions or project files are
380 -s --no-session Do not load the previous session's files.
382 -t --no-terminal Do not load terminal support. Use this option if you do
383 not want to load the virtual terminal emulator widget
384 at startup. If you do not have ``libvte.so.4`` installed,
385 then terminal-support is automatically disabled. Only
386 available if Geany was compiled with support for VTE.
388 *none* --socket-file Use this socket filename for communication with a
389 running Geany instance. This can be used with the following
390 command to execute Geany on the current workspace::
392 geany --socket-file=/tmp/geany-sock-$(xprop -root _NET_CURRENT_DESKTOP | awk '{print $3}')
394 *none* --vte-lib Specify explicitly the path including filename or only
395 the filename to the VTE library, e.g.
396 ``/usr/lib/libvte.so`` or ``libvte.so``. This option is
397 only needed when the auto-detection does not work. Only
398 available if Geany was compiled with support for VTE.
400 -v --verbose Be verbose (print useful status messages).
402 -V --version Show version information and exit.
404 -? --help Show help information and exit.
406 *none* [files ...] Open all given files at startup. This option causes
407 Geany to ignore loading stored files from the last
408 session (if enabled).
409 Geany also recognizes line and column information when
410 appended to the filename with colons, e.g.
411 "geany foo.bar:10:5" will open the file foo.bar and
412 place the cursor in line 10 at column 5.
414 Projects can also be opened but a project file (\*.geany)
415 must be the first non-option argument. All additionally
416 given files are ignored.
417 ============ ======================= =================================================
419 You can also pass line number and column number information, e.g.::
421 geany some_file.foo:55:4
423 Geany supports all generic GTK options, a list is available on the
435 At startup, Geany loads all files from the last time Geany was
436 launched. You can disable this feature in the preferences dialog
437 (see `General Startup preferences`_).
439 You can start several instances of Geany, but only the first will
440 load files from the last session. In the subsequent instances, you
441 can find these files in the file menu under the "Recent files" item.
442 By default this contains the last 10 recently opened files. You can
443 change the number of recently opened files in the preferences dialog.
445 To run a second instance of Geany, do not specify any filenames on
446 the command-line, or disable opening files in a running instance
447 using the appropriate command line option.
450 Opening files from the command-line in a running instance
451 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
453 Geany detects if there is an an instance of itself already running and opens files
454 from the command-line in that instance. So, Geany can
455 be used to view and edit files by opening them from other programs
456 such as a file manager.
458 You can also pass line number and column number information, e.g.::
460 geany some_file.foo:55:4
462 This would open the file ``some_file.foo`` with the cursor on line 55,
465 If you do not like this for some reason, you can disable using the first
466 instance by using the appropriate command line option -- see the section
467 called `Command line options`_.
470 Virtual terminal emulator widget (VTE)
471 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
473 If you have installed ``libvte.so`` on your system, it is loaded
474 automatically by Geany, and you will have a terminal widget in the
475 notebook at the bottom.
477 If Geany cannot find any ``libvte.so`` at startup, the terminal widget
478 will not be loaded. So there is no need to install the package containing
479 this file in order to run Geany. Additionally, you can disable the use
480 of the terminal widget by command line option, for more information
481 see the section called `Command line options`_.
483 You can use this terminal (from now on called VTE) much as you would
484 a terminal program like xterm. There is basic clipboard support. You
485 can paste the contents of the clipboard by pressing the right mouse
486 button to open the popup menu, and choosing Paste. To copy text from
487 the VTE, just select the desired text and then press the right mouse
488 button and choose Copy from the popup menu. On systems running the
489 X Window System you can paste the last selected text by pressing the
490 middle mouse button in the VTE (on 2-button mice, the middle button
491 can often be simulated by pressing both mouse buttons together).
493 In the preferences dialog you can specify a shell which should be
494 started in the VTE. To make the specified shell a login shell just
495 use the appropriate command line options for the shell. These options
496 should be found in the manual page of the shell. For zsh and bash
497 you can use the argument ``--login``.
500 Geany tries to load ``libvte.so``. If this fails, it tries to load
501 some other filenames. If this fails too, you should check whether you
502 installed libvte correctly. Again note, Geany will run without this
505 It could be, that the library is called something else than
506 ``libvte.so`` (e.g. on FreeBSD 6.0 it is called ``libvte.so.8``). If so
507 please set a link to the correct file (as root)::
509 # ln -s /usr/lib/libvte.so.X /usr/lib/libvte.so
511 Obviously, you have to adjust the paths and set X to the number of your
514 You can also specify the filename of the VTE library to use on the command
515 line (see the section called `Command line options`_) or at compile time
516 by specifying the command line option ``--with-vte-module-path`` to
520 Defining own widget styles using .gtkrc-2.0
521 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
523 You can define your widget style for many of Geany's GUI parts. To
524 do this, just edit your ``.gtkrc-2.0`` (usually found in your home
525 directory on UNIX-like systems and in the etc subdirectory of your
526 Geany installation on Windows).
528 To have a defined style used by Geany you must assign it to
529 at least one of Geany's widgets. For example use the following line::
531 widget "Geany*" style "geanyStyle"
533 This would assign your style "geany_style" to all Geany
534 widgets. You can also assign styles only to specific widgets. At the
535 moment you can use the following widgets:
547 An example of a simple ``.gtkrc-2.0``::
553 widget "GeanyMainWindow" style "geanyStyle"
559 widget "GeanyPrefsDialog" style "geanyStyle"
565 Switching between documents
566 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
568 The documents list and the editor tabs are two different ways
569 to switch between documents using the mouse. When you hit the key
570 combination to move between tabs, the order is determined by the tab
571 order. It is not alphabetical as shown in the documents list
572 (regardless of whether or not editor tabs are visible).
574 See the `Notebook tab keybindings`_ section for useful
575 shortcuts including for Most-Recently-Used document switching.
579 The `Document->Clone` menu item copies the current document's text,
580 cursor position and properties into a new untitled document. If
581 there is a selection, only the selected text is copied. This can be
582 useful when making temporary copies of text or for creating
583 documents with similar or identical contents.
586 Character sets and Unicode Byte-Order-Mark (BOM)
587 ------------------------------------------------
593 Geany provides support for detecting and converting character sets. So
594 you can open and save files in different character sets, and even
595 convert a file from one character set to another. To do this,
596 Geany uses the character conversion capabilities of the GLib library.
598 Only text files are supported, i.e. opening files which contain
599 NULL-bytes may fail. Geany will try to open the file anyway but it is
600 likely that the file will be truncated because it can only be read up
601 to the first occurrence of a NULL-byte. All characters after this
602 position are lost and are not written when you save the file.
604 Geany tries to detect the encoding of a file while opening it, but
605 auto-detecting the encoding of a file is not easy and sometimes an
606 encoding might not be detected correctly. In this case you have to
607 set the encoding of the file manually in order to display it
608 correctly. You can this in the file open dialog by selecting an
609 encoding in the drop down box or by reloading the file with the
610 file menu item "Reload as". The auto-detection works well for most
611 encodings but there are also some encodings where it is known that
612 auto-detection has problems.
614 There are different ways to set different encodings in Geany:
616 * Using the file open dialog
618 This opens the file with the encoding specified in the encoding drop
619 down box. If the encoding is set to "Detect from file" auto-detection
620 will be used. If the encoding is set to "Without encoding (None)" the
621 file will be opened without any character conversion and Geany will
622 not try to auto-detect the encoding (see below for more information).
624 * Using the "Reload as" menu item
626 This item reloads the current file with the specified encoding. It can
627 help if you opened a file and found out that the wrong encoding was used.
629 * Using the "Set encoding" menu item
631 Contrary to the above two options, this will not change or reload
632 the current file unless you save it. It is useful when you want to
633 change the encoding of the file.
635 * Specifying the encoding in the file itself
637 As mentioned above, auto-detecting the encoding of a file may fail on
638 some encodings. If you know that Geany doesn't open a certain file,
639 you can add the specification line, described in the next section,
640 to the beginning of the file to force Geany to use a specific
641 encoding when opening the file.
644 In-file encoding specification
645 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
647 Geany detects meta tags of HTML files which contain charset information
650 <meta http-equiv="content-type" content="text/html; charset=ISO-8859-15" />
652 and the specified charset is used when opening the file. This is useful if the
653 encoding of the file cannot be detected properly.
654 For non-HTML files you can also define a line like::
656 /* geany_encoding=ISO-8859-15 */
660 # geany_encoding=ISO-8859-15 #
662 to force an encoding to be used. The #, /\* and \*/ are examples
663 of filetype-specific comment characters. It doesn't matter which
664 characters are around the string " geany_encoding=ISO-8859-15 " as long
665 as there is at least one whitespace character before and after this
666 string. Whitespace characters are in this case a space or tab character.
667 An example to use this could be you have a file with ISO-8859-15
668 encoding but Geany constantly detects the file encoding as ISO-8859-1.
669 Then you simply add such a line to the file and Geany will open it
670 correctly the next time.
672 Since Geany 0.15 you can also use lines which match the
673 regular expression used to find the encoding string:
674 ``coding[\t ]*[:=][\t ]*([a-z0-9-]+)[\t ]*``
677 These specifications must be in the first 512 bytes of the file.
678 Anything after the first 512 bytes will not be recognized.
682 # encoding = ISO-8859-15
686 # coding: ISO-8859-15
688 Special encoding "None"
689 ^^^^^^^^^^^^^^^^^^^^^^^
691 There is a special encoding "None" which uses no
692 encoding. It is useful when you know that Geany cannot auto-detect
693 the encoding of a file and it is not displayed correctly. Especially
694 when the file contains NULL-bytes this can be useful to skip auto
695 detection and open the file properly at least until the occurrence
696 of the first NULL-byte. Using this encoding opens the file as it is
697 without any character conversion.
700 Unicode Byte-Order-Mark (BOM)
701 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
703 Furthermore, Geany detects a Unicode Byte Order Mark (see
704 http://en.wikipedia.org/wiki/Byte_Order_Mark for details). Of course,
705 this feature is only available if the opened file is in a Unicode
706 encoding. The Byte Order Mark helps to detect the encoding of a file,
707 e.g. whether it is UTF-16LE or UTF-16BE and so on. On Unix-like systems
708 using a Byte Order Mark could cause some problems for programs not
709 expecting it, e.g. the compiler gcc stops
710 with stray errors, PHP does not parse a script containing a BOM and
711 script files starting with a she-bang maybe cannot be started. In the
712 status bar you can easily see whether the file starts with a BOM or
715 If you want to set a BOM for a file or if you want to remove it
716 from a file, just use the document menu and toggle the checkbox.
719 If you are unsure what a BOM is or if you do not understand where
720 to use it, then it is probably not important for you and you can
732 Geany provides basic code folding support. Folding means the ability to
733 show and hide parts of the text in the current file. You can hide
734 unimportant code sections and concentrate on the parts you are working on
735 and later you can show hidden sections again. In the editor window there is
736 a small grey margin on the left side with [+] and [-] symbols which
737 show hidden parts and hide parts of the file respectively. By
738 clicking on these icons you can simply show and hide sections which are
739 marked by vertical lines within this margin. For many filetypes nested
740 folding is supported, so there may be several fold points within other
744 You can customize the folding icon and line styles - see the
745 filetypes.common `Folding Settings`_.
747 If you don't like it or don't need it at all, you can simply disable
748 folding support completely in the preferences dialog.
750 The folding behaviour can be changed with the "Fold/Unfold all children of
751 a fold point" option in the preference dialog. If activated, Geany will
752 unfold all nested fold points below the current one if they are already
753 folded (when clicking on a [+] symbol).
754 When clicking on a [-] symbol, Geany will fold all nested fold points
755 below the current one if they are unfolded.
757 This option can be inverted by pressing the Shift
758 key while clicking on a fold symbol. That means, if the "Fold/Unfold all
759 children of a fold point" option is enabled, pressing Shift will disable
760 it for this click and vice versa.
763 Column mode editing (rectangular selections)
764 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
766 There is basic support for column mode editing. To use it, create a
767 rectangular selection by holding down the Control and Shift keys
768 (or Alt and Shift on Windows) while selecting some text.
769 Once a rectangular selection exists you can start editing the text within
770 this selection and the modifications will be done for every line in the
773 It is also possible to create a zero-column selection - this is
774 useful to insert text on multiple lines.
776 Drag and drop of text
777 ^^^^^^^^^^^^^^^^^^^^^
779 If you drag selected text in the editor widget of Geany the text is
780 moved to the position where the mouse pointer is when releasing the
781 mouse button. Holding Control when releasing the mouse button will
782 copy the text instead. This behaviour was changed in Geany 0.11 -
783 before the selected text was copied to the new position.
789 Geany allows each document to indent either with a tab character,
790 multiple spaces or a combination of both.
792 The *Tabs* setting indents with one tab character per indent level, and
793 displays tabs as the indent width.
795 The *Spaces* setting indents with the number of spaces set in the indent
796 width for each level.
798 The *Tabs and Spaces* setting indents with spaces as above, then converts
799 as many spaces as it can to tab characters at the rate of one tab for
800 each multiple of the `Various preference` setting
801 *indent_hard_tab_width* (default 8) and displays tabs as the
802 *indent_hard_tab_width* value.
804 The default indent settings are set in `Editor Indentation
805 preferences`_ (see the link for more information).
807 The default settings can be overridden per-document using the
808 Document menu. They can also be overridden by projects - see
809 `Project management`_.
811 The indent mode for the current document is shown on the status bar
815 Indent with Tab characters.
819 Indent with tabs and spaces, depending on how much indentation is
822 Applying new indentation settings
823 `````````````````````````````````
824 After changing the default settings you may wish to apply the new
825 settings to every document in the current session. To do this use the
826 *Project->Apply Default Indentation* menu item.
828 Detecting indent type
829 `````````````````````
830 The *Detect from file* indentation preference can be used to
831 scan each file as it's opened and set the indent type based on
832 how many lines start with a tab vs. 2 or more spaces.
838 When enabled, auto-indentation happens when pressing *Enter* in the
839 Editor. It adds a certain amount of indentation to the new line so the
840 user doesn't always have to indent each line manually.
842 Geany has four types of auto-indentation:
845 Disables auto-indentation completely.
847 Adds the same amount of whitespace on a new line as on the previous line.
848 For the *Tabs* and the *Spaces* indent types the indentation will use the
849 same combination of characters as the previous line. The
850 *Tabs and Spaces* indentation type converts as explained above.
852 Does the same as *Basic* but also indents a new line after an opening
853 brace '{', and de-indents when typing a closing brace '}'. For Python,
854 a new line will be indented after typing ':' at the end of the
857 Similar to *Current chars* but the closing brace will be aligned to
858 match the indentation of the line with the opening brace. This
859 requires the filetype to be one where Geany knows that the Scintilla
860 lexer understands matching braces (C, C++, D, HTML, Pascal, Bash,
863 There is also XML-tag auto-indentation. This is enabled when the
864 mode is more than just Basic, and is also controlled by a filetype
865 setting - see `xml_indent_tags`_.
871 Geany provides a handy bookmarking feature that lets you mark one
872 or more lines in a document, and return the cursor to them using a
875 To place a mark on a line, either left-mouse-click in the left margin
876 of the editor window, or else use Ctrl-m. This will
877 produce a small green plus symbol in the margin. You can have as many
878 marks in a document as you like. Click again (or use Ctrl-m again)
879 to remove the bookmark. To remove all the marks in a given document,
880 use "Remove Markers" in the Document menu.
882 To navigate down your document, jumping from one mark to the next,
883 use Ctrl-. (control period). To go in the opposite direction on
884 the page, use Ctrl-, (control comma). Using the bookmarking feature
885 together with the commands to switch from one editor tab to another
886 (Ctrl-PgUp/PgDn and Ctrl-Tab) provides a particularly fast way to
887 navigate around multiple files.
890 Code navigation history
891 ^^^^^^^^^^^^^^^^^^^^^^^
893 To ease navigation in source files and especially between
894 different files, Geany lets you jump between different navigation
895 points. Currently, this works for the following:
897 * `Go to tag declaration`_
898 * `Go to tag definition`_
903 When using one of these actions, Geany remembers your current position
904 and jumps to the new one. If you decide to go back to your previous
905 position in the file, just use "Navigate back a location". To
906 get back to the new position again, just use "Navigate forward a
907 location". This makes it easier to navigate in e.g. foreign code
908 and between different files.
911 Sending text through custom commands
912 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
914 You can define several custom commands in Geany and send the current
915 selection to one of these commands using the *Edit->Format->Send
916 Selection to* menu or keybindings. The output of the command will be
917 used to replace the current selection. This makes it possible to use
918 text formatting tools with Geany in a general way.
920 The selected text will be sent to the standard input of the executed
921 command, so the command should be able to read from it and it should
922 print all results to its standard output which will be read by
923 Geany. To help finding errors in executing the command, the output
924 of the program's standard error will be printed on Geany's standard
927 If there is no selection, the whole current line is used instead.
929 To add a custom command, use the *Send Selection to->Set Custom
930 Commands* menu item. Click on *Add* to get a new item and type the
931 command. You can also specify some command line options. Empty
932 commands are not saved.
934 Normal shell quoting is supported, so you can do things like:
936 * ``sed 's/\./(dot)/g'``
938 The above example would normally be done with the `Replace all`_
939 function, but it can be handy to have common commands already set up.
945 You can execute the context action command on the current word at the
946 cursor position or the available selection. This word or selection
947 can be used as an argument to the command.
948 The context action is invoked by a menu entry in the popup menu of the
949 editor and also a keyboard shortcut (see the section called
952 The command can be specified in the preferences dialog and also for
953 each filetype (see "context_action_cmd" in the section called
954 `Filetype configuration`_). When the context action is invoked, the filetype
955 specific command is used if available, otherwise the command
956 specified in the preferences dialog is executed.
958 The current word or selection can be referred with the wildcard "%s"
959 in the command, it will be replaced by the current word or
960 selection before the command is executed.
962 For example a context action can be used to open API documentation
963 in a browser window, the command to open the PHP API documentation
966 firefox "http://www.php.net/%s"
968 when executing the command, the %s is substituted by the word near
969 the cursor position or by the current selection. If the cursor is at
970 the word "echo", a browser window will open(assumed your browser is
971 called firefox) and it will open the address: http://www.php.net/echo.
977 Geany can offer a list of possible completions for symbols defined in the
978 tags and for all words in a document.
980 The autocompletion list for symbols is presented when the first few
981 characters of the symbol are typed (configurable, see `Editor Completions
982 preferences`_, default 4) or when the *Complete word*
983 keybinding is pressed (configurable, see `Editor keybindings`_,
986 When the defined keybinding is typed and the *Autocomplete all words in
987 document* preference (in `Editor Completions preferences`_)
988 is selected then the autocompletion list will show all matching words
989 in the document, if there are no matching symbols.
991 If you don't want to use autocompletion it can be dismissed until
992 the next symbol by pressing Escape. The autocompletion list is updated
993 as more characters are typed so that it only shows completions that start
994 with the characters typed so far. If no symbols begin with the sequence,
995 the autocompletion window is closed.
997 The up and down arrows will move the selected item. The highlighted
998 item on the autocompletion list can be chosen from the list by pressing
999 Enter/Return. You can also double-click to select an item. The sequence
1000 will be completed to match the chosen item, and if the *Drop rest of
1001 word on completion* preference is set (in `Editor Completions
1002 preferences`_) then any characters after the cursor that match
1003 a symbol or word are deleted.
1005 Word part completion
1006 ````````````````````
1007 By default, pressing Tab will complete the selected item by word part;
1008 useful e.g. for adding the prefix ``gtk_combo_box_entry_`` without typing it
1013 * gtk_combo_box_<e><TAB>
1014 * gtk_combo_box_entry_<s><ENTER>
1015 * gtk_combo_box_entry_set_text_column
1017 The key combination can be changed from Tab - See `Editor keybindings`_.
1018 If you clear/change the key combination for word part completion, Tab
1019 will complete the whole word instead, like Enter.
1021 Scope autocompletion
1022 ````````````````````
1031 When you type ``foo.`` it will show an autocompletion list with 'i' and
1034 It only works for languages that set parent scope names for e.g. struct
1035 members. Currently this means C-like languages. The C tag parser only
1036 parses global scopes, so this won't work for structs or objects declared
1040 User-definable snippets
1041 ^^^^^^^^^^^^^^^^^^^^^^^
1043 Snippets are small strings or code constructs which can be replaced or
1044 completed to a more complex string. So you can save a lot of time when
1045 typing common strings and letting Geany do the work for you.
1046 To know what to complete or replace Geany reads a configuration file
1047 called ``snippets.conf`` at startup.
1049 Maybe you need to often type your name, so define a snippet like this::
1052 myname=Enrico Tröger
1054 Every time you write ``myname`` <TAB> in Geany, it will replace "myname"
1055 with "Enrico Tröger". The key to start autocompletion can be changed
1056 in the preferences dialog, by default it is TAB. The corresponding keybinding
1057 is called `Complete snippet`.
1061 You can override the default snippets using the user
1062 ``snippets.conf`` file. Use the *Tools->Configuration
1063 Files->snippets.conf* menu item. See also `Configuration file paths`_.
1065 This adds the default settings to the user file if the file doesn't
1066 exist. Alternatively the file can be created manually, adding only
1067 the settings you want to change. All missing settings will be read
1068 from the system snippets file.
1072 The file ``snippets.conf`` contains sections defining snippets that
1073 are available for particular filetypes and in general.
1075 The two sections "Default" and "Special" apply to all filetypes.
1076 "Default" contains all snippets which are available for every
1077 filetype and "Special" contains snippets which can only be used in
1078 other snippets. So you can define often used parts of snippets and
1079 just use the special snippet as a placeholder (see the
1080 ``snippets.conf`` for details).
1082 You can define sections with the name of a filetype eg "C++". The
1083 snippets in that section are only available for use in files with that
1084 filetype. Snippets in filetype sections will hide snippets with the
1085 same name in the "Default" section when used in a file of that
1088 **Substitution sequences for snippets**
1090 To define snippets you can use several special character sequences which
1091 will be replaced when using the snippet:
1093 ================ =========================================================
1094 \\n or %newline% Insert a new line (it will be replaced by the used EOL
1095 char(s): LF, CR/LF, or CR).
1097 \\t or %ws% Insert an indentation step, it will be replaced according
1098 to the current document's indent mode.
1100 \\s \\s to force whitespace at beginning or end of a value
1101 ('key= value' won't work, use 'key=\\svalue')
1103 %cursor% Place the cursor at this position after completion has
1104 been done. You can define multiple %cursor% wildcards
1105 and use the keybinding `Move cursor in snippet` to jump
1106 to the next defined cursor position in the completed
1109 %...% "..." means the name of a key in the "Special" section.
1110 If you have defined a key "brace_open" in the "Special"
1111 section you can use %brace_open% in any other snippet.
1112 ================ =========================================================
1114 Snippet names must not contain spaces otherwise they won't
1115 work correctly. But beside that you can define almost any
1116 string as a snippet and use it later in Geany. It is not limited
1117 to existing contructs of certain programming languages(like ``if``,
1118 ``for``, ``switch``). Define whatever you need.
1120 **Template wildcards**
1122 Since Geany 0.15 you can also use most of the available templates wildcards
1123 listed in `Template wildcards`_. All wildcards which are listed as
1124 `available in snippets` can be used. For instance to improve the above example::
1127 myname=My name is {developer}
1128 mysystem=My system: {command:uname -a}
1130 this will replace ``myname`` with "My name is " and the value of the template
1131 preference ``developer``.
1135 You can change the way Geany recognizes the word to complete,
1136 that is how the start and end of a word is recognised when the
1137 snippet completion is requested. The section "Special" may
1138 contain a key "wordchars" which lists all characters a string may contain
1139 to be recognized as a word for completion. Leave it commented to use
1140 default characters or define it to add or remove characters to fit your
1146 Normally you would type the snippet name and press Tab. However, you
1147 can define keybindings for snippets under the *Keybindings* group in
1152 block_cursor=<Ctrl>8
1155 Snippet keybindings may be overridden by Geany's configurable
1159 Inserting Unicode characters
1160 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1162 You can insert Unicode code points by hitting Ctrl-Shift-u, then still holding
1163 Ctrl-Shift, type some hex digits representing the code point for the character
1164 you want and hit Enter or Return (still holding Ctrl-Shift). If you release
1165 Ctrl-Shift before hitting Enter or Return (or any other character), the code
1166 insertion is completed, but the typed character is also entered. In the case
1167 of Enter/Return, it is a newline, as you might expect.
1170 In some earlier versions of Geany, you might need to first unbind Ctrl-Shift-u
1171 in the `keybinding preferences`_, then select *Tools->Reload Configuration*
1172 or restart Geany. Note that it works slightly differently from other GTK
1173 applications, in that you'll need to continue to hold down the Ctrl and Shift
1174 keys while typing the code point hex digits (and the Enter or Return to finish the code point).
1177 Search, replace and go to
1178 -------------------------
1180 This section describes search-related commands from the Search menu
1181 and the editor window's popup menu:
1188 * Go to tag definition
1189 * Go to tag declaration
1192 See also `Search`_ preferences.
1196 There are also two toolbar entries:
1201 There are keybindings to focus each of these - see `Focus
1202 keybindings`_. Pressing Escape will then focus the editor.
1206 The quickest way to find some text is to use the search bar entry in
1207 the toolbar. This performs a case-insensitive search in the current
1208 document whilst you type. Pressing Enter will search again, and pressing
1209 Shift-Enter will search backwards.
1214 The Find dialog is used for finding text in one or more open documents.
1216 .. image:: ./images/find_dialog.png
1222 The syntax for the *Use regular expressions* option is shown in
1223 `Regular expressions`_.
1226 *Use escape sequences* is implied for regular expressions.
1228 The *Use escape sequences* option will transform any escaped characters
1229 into their UTF-8 equivalent. For example, \\t will be transformed into
1230 a tab character. Other recognized symbols are: \\\\, \\n, \\r, \\uXXXX
1231 (Unicode characters).
1237 To find all matches, click on the Find All expander. This will reveal
1244 Find All In Document will show a list of matching lines in the
1245 current document in the Messages tab of the Message Window. *Find All
1246 In Session* does the same for all open documents.
1248 Mark will highlight all matches in the current document with a
1249 colored box. These markers can be removed by selecting the
1250 Remove Markers command from the Document menu.
1253 Change font in search dialog text fields
1254 ````````````````````````````````````````
1256 All search related dialogs use a Monospace for the text input fields to
1257 increase the readability of input text. This is useful when you are
1258 typing input such as regular expressions with spaces, periods and commas which
1259 might it hard to read with a proportional font.
1261 If you want to change the font, you can do this easily
1262 by inserting the following style into your ``.gtkrc-2.0``
1263 (usually found in your home directory on UNIX-like systems and in the
1264 etc subdirectory of your Geany installation on Windows)::
1266 style "search_style"
1268 font_name="Monospace 8"
1270 widget "GeanyDialogSearch.*.GtkEntry" style:highest "search_style"
1272 Please note the addition of ":highest" in the last line which sets the priority
1273 of this style to the highest available. Otherwise, the style is ignored
1274 for the search dialogs.
1279 The *Find Next/Previous Selection* commands perform a search for the
1280 current selected text. If nothing is selected, by default the current
1281 word is used instead. This can be customized by the
1282 *find_selection_type* preference - see `Various preferences`_.
1284 ===== =============================================
1285 Value *find_selection_type* behaviour
1286 ===== =============================================
1287 0 Use the current word (default).
1288 1 Try the X selection first, then current word.
1289 2 Repeat last search.
1290 ===== =============================================
1296 *Find Usage* searches all open files. It is similar to the *Find All In
1297 Session* option in the Find dialog.
1299 If there is a selection, then it is used as the search text; otherwise
1300 the current word is used. The current word is either taken from the
1301 word nearest the edit cursor, or the word underneath the popup menu
1302 click position when the popup menu is used. The search results are
1303 shown in the Messages tab of the Message Window.
1306 You can also use Find Usage for symbol list items from the popup
1313 *Find in Files* is a more powerful version of *Find Usage* that searches
1314 all files in a certain directory using the Grep tool. The Grep tool
1315 must be correctly set in Preferences to the path of the system's Grep
1316 utility. GNU Grep is recommended (see note below).
1318 .. image:: ./images/find_in_files_dialog.png
1320 The *Search* field is initially set to the current word in the editor
1321 (depending on `Search`_ preferences).
1323 The *Files* setting allows to choose which files are included in the
1324 search, depending on the mode:
1327 Search in all files;
1329 Use the current project's patterns, see `Project properties`_;
1331 Use custom patterns.
1333 Both project and custom patterns use a glob-style syntax, each
1334 pattern separated by a space. To search all ``.c`` and ``.h`` files,
1336 Note that an empty pattern list searches in all files rather
1339 The *Directory* field is initially set to the current document's directory,
1340 unless this field has already been edited and the current document has
1341 not changed. Otherwise, the current document's directory is prepended to
1342 the drop-down history. This can be disabled - see `Search`_ preferences.
1344 The *Encoding* field can be used to define the encoding of the files
1345 to be searched. The entered search text is converted to the chosen encoding
1346 and the search results are converted back to UTF-8.
1348 The *Extra options* field is used to pass any additional arguments to
1352 The *Files* setting uses ``--include=`` when searching recursively,
1353 *Recurse in subfolders* uses ``-r``; both are GNU Grep options and may
1354 not work with other Grep implementations.
1357 Filtering out version control files
1358 ```````````````````````````````````
1360 When using the *Recurse in subfolders* option with a directory that's
1361 under version control, you can set the *Extra options* field to filter
1362 out version control files.
1364 If you have GNU Grep >= 2.5.2 you can use the ``--exclude-dir``
1365 argument to filter out CVS and hidden directories like ``.svn``.
1367 Example: ``--exclude-dir=.svn --exclude-dir=CVS``
1369 If you have an older Grep, you can try using the ``--exclude`` flag
1370 to filter out filenames.
1372 SVN Example: ``--exclude=*.svn-base``
1374 The --exclude argument only matches the file name part, not the path.
1380 The Replace dialog is used for replacing text in one or more open
1383 .. image:: ./images/replace_dialog.png
1385 The Replace dialog has the same options for matching text as the Find
1386 dialog. See the section `Matching options`_.
1388 The *Use regular expressions* option allows regular expressions to
1389 be used in the search string and back references in the replacement
1390 text -- see the entry for '\\n' in `Regular expressions`_.
1395 To replace several matches, click on the *Replace All* expander. This
1396 will reveal several options:
1402 *Replace All In Document* will replace all matching text in the
1403 current document. *Replace All In Session* does the same for all open
1404 documents. *Replace All In Selection* will replace all matching text
1405 in the current selection of the current document.
1408 Go to tag definition
1409 ^^^^^^^^^^^^^^^^^^^^
1411 If the current word or selection is the name of a tag definition
1412 (e.g. a function name) and the file containing the tag definition is
1413 open, this command will switch to that file and go to the
1414 corresponding line number. The current word is either the word
1415 nearest the edit cursor, or the word underneath the popup menu click
1416 position when the popup menu is used.
1419 If the corresponding tag is on the current line, Geany will first
1420 look for a tag declaration instead, as this is more useful.
1421 Likewise *Go to tag declaration* will search for a tag definition
1422 first in this case also.
1425 Go to tag declaration
1426 ^^^^^^^^^^^^^^^^^^^^^
1428 Like *Go to tag definition*, but for a forward declaration such as a
1429 C function prototype or ``extern`` declaration instead of a function
1436 Go to a particular line number in the current file.
1442 You can use regular expressions in the Find and Replace dialogs
1443 by selecting the *Use regular expressions* check box (see `Matching
1444 options`_). The syntax is Perl compatible. Basic syntax is described
1445 in the table below. For full details, see
1446 http://www.geany.org/manual/gtk/glib/glib-regex-syntax.html.
1449 1. The *Use escape sequences* dialog option always applies for regular
1451 2. Searching backwards with regular expressions is not supported.
1453 **In a regular expression, the following characters are interpreted:**
1455 ======= ============================================================
1456 . Matches any character.
1458 ( This marks the start of a region for tagging a match.
1460 ) This marks the end of a tagged region.
1462 \\n Where n is 1 through 9 refers to the first through ninth tagged
1463 region when searching or replacing.
1465 Searching for (Wiki)\\1 matches WikiWiki.
1467 If the search string was Fred([1-9])XXX and the
1468 replace string was Sam\\1YYY, when applied to Fred2XXX this
1469 would generate Sam2YYY.
1471 \\0 When replacing, the whole matching text.
1473 \\b This matches a word boundary.
1475 \\c A backslash followed by d, D, s, S, w or W, becomes a
1476 character class (both inside and outside sets []).
1479 * D: any char except decimal digits
1480 * s: whitespace (space, \\t \\n \\r \\f \\v)
1481 * S: any char except whitespace (see above)
1482 * w: alphanumeric & underscore
1483 * W: any char except alphanumeric & underscore
1485 \\x This allows you to use a character x that would otherwise have
1486 a special meaning. For example, \\[ would be interpreted as [
1487 and not as the start of a character set. Use \\\\ for a literal
1490 [...] Matches one of the characters in the set. If the first
1491 character in the set is ^, it matches the characters NOT in
1492 the set, i.e. complements the set. A shorthand S-E (start
1493 dash end) is used to specify a set of characters S up to E,
1496 The special characters ] and - have no special
1497 meaning if they appear first in the set. - can also be last
1498 in the set. To include both, put ] first: []A-Z-].
1502 []|-] matches these 3 chars
1503 []-|] matches from ] to | chars
1504 [a-z] any lowercase alpha
1505 [^]-] any char except - and ]
1506 [^A-Z] any char except uppercase alpha
1509 ^ This matches the start of a line (unless used inside a set, see
1512 $ This matches the end of a line.
1514 \* This matches 0 or more times. For example, Sa*m matches Sm, Sam,
1515 Saam, Saaam and so on.
1517 \+ This matches 1 or more times. For example, Sa+m matches Sam,
1518 Saam, Saaam and so on.
1520 \? This matches 0 or 1 time(s). For example, Joh?n matches John, Jon.
1521 ======= ============================================================
1524 This table is adapted from Scintilla and SciTE documentation,
1525 distributed under the `License for Scintilla and SciTE`_.
1531 The View menu allows various elements of the main window to be shown
1532 or hidden, and also provides various display-related editor options.
1536 The Color schemes menu is available under the *View->Editor* submenu.
1537 It lists various color schemes for editor highlighting styles,
1538 including the default scheme first. Other items are available based
1539 on what color scheme files Geany found at startup.
1541 Color scheme files are read from the `Configuration file paths`_ under
1542 the ``colorschemes`` subdirectory. They should have the extension
1543 ``.conf``. The default color scheme
1544 is read from ``filetypes.common``.
1546 The `[named_styles] section`_ and `[named_colors] section`_ are the
1547 same as for ``filetypes.common``.
1549 The ``[theme_info]`` section can contain information about the
1550 theme. The ``name`` and ``description`` keys are read to set the
1551 menu item text and tooltip, respectively. These keys can have
1552 translations, e.g.::
1561 Tags are information that relates symbols in a program with the
1562 source file location of the declaration and definition.
1564 Geany has built-in functionality for generating tag information (aka
1565 "workspace tags") for supported filetypes when you open a file. You
1566 can also have Geany automatically load external tag files (aka "global
1567 tags files") upon startup, or manually using *Tools --> Load Tags*.
1569 Geany uses its own tag file format, similar to what ``ctags`` uses
1570 (but is incompatible with ctags). You use Geany to generate global
1571 tags files, as described below.
1577 Tags for each document are parsed whenever a file is loaded, saved or
1578 modified (see *Symbol list update frequency* preference in the `Editor
1579 Completions preferences`_). These are shown in the Symbol list in the
1580 Sidebar. These tags are also used for autocompletion of symbols and calltips
1581 for all documents open in the current session that have the same filetype.
1583 The *Go to Tag* commands can be used with all workspace tags. See
1584 `Go to tag definition`_.
1590 Global tags are used to provide autocompletion of symbols and calltips
1591 without having to open the corresponding source files. This is intended
1592 for library APIs, as the tags file only has to be updated when you upgrade
1595 You can load a custom global tags file in two ways:
1597 * Using the *Load Tags* command in the Tools menu.
1598 * By moving or symlinking tags files to the ``tags`` subdirectory of
1599 one of the `configuration file paths`_ before starting Geany.
1601 You can either download these files or generate your own. They have
1606 *lang_ext* is one of the extensions set for the filetype associated
1607 with the tags. See the section called `Filetype extensions`_ for
1611 Default global tags files
1612 `````````````````````````
1614 For some languages, a list of global tags is loaded when the
1615 corresponding filetype is first used. Currently these are for:
1620 * HTML -- &symbol; completion, e.g. for ampersand, copyright, etc.
1625 Global tags file format
1626 ```````````````````````
1628 Global tags files can have three different formats:
1631 * Pipe-separated format
1634 The first line of global tags files should be a comment, introduced
1635 by ``#`` followed by a space and a string like ``format=pipe``,
1636 ``format=ctags`` or ``format=tagmanager`` respectively, these are
1637 case-sensitive. This helps Geany to read the file properly. If this
1638 line is missing, Geany tries to auto-detect the used format but this
1642 The Tagmanager format is a bit more complex and is used for files
1643 created by the ``geany -g`` command. There is one tag per line.
1644 Different tag attributes like the return value or the argument list
1645 are separated with different characters indicating the type of the
1646 following argument. This is the more complete and recommended tag
1649 Pipe-separated format
1650 *********************
1651 The Pipe-separated format is easier to read and write.
1652 There is one tag per line and different tag attributes are separated
1653 by the pipe character (``|``). A line looks like::
1655 basename|string|(string path [, string suffix])|
1657 | The first field is the tag name (usually a function name).
1658 | The second field is the type of the return value.
1659 | The third field is the argument list for this tag.
1660 | The fourth field is the description for this tag but
1661 currently unused and should be left empty.
1663 Except for the first field (tag name), all other field can be left
1664 empty but the pipe separator must appear for them.
1666 You can easily write your own global tag files using this format.
1667 Just save them in your tags directory, as described earlier in the
1668 section `Global tags`_.
1672 This is the format that ctags generates, and that is used by Vim.
1673 This format is compatible with the format historically used by Vi.
1675 The format is described at http://ctags.sourceforge.net/FORMAT, but
1676 for the full list of existing extensions please refer to ctags.
1677 However, note that Geany may actually only honor a subset of the
1678 existing extensions.
1680 Generating a global tags file
1681 `````````````````````````````
1683 You can generate your own global tags files by parsing a list of
1684 source files. The command is::
1686 geany -g [-P] <Tag File> <File list>
1688 * Tag File filename should be in the format described earlier --
1689 see the section called `Global tags`_.
1690 * File list is a list of filenames, each with a full path (unless
1691 you are generating C/C++ tags and have set the CFLAGS environment
1692 variable appropriately).
1693 * ``-P`` or ``--no-preprocessing`` disables using the C pre-processor
1694 to process ``#include`` directives for C/C++ source files. Use this
1695 option if you want to specify each source file on the command-line
1696 instead of using a 'master' header file. Also can be useful if you
1697 don't want to specify the CFLAGS environment variable.
1699 Example for the wxD library for the D programming language::
1701 geany -g wxd.d.tags /home/username/wxd/wx/*.d
1704 Generating C/C++ tag files
1705 **************************
1706 You may need to first setup the `C ignore.tags`_ file.
1708 For C/C++ tag files gcc is required by default, so that header files
1709 can be preprocessed to include any other headers they depend upon. If
1710 you do not want this, use the ``-P`` option described above.
1712 For preprocessing, the environment variable CFLAGS should be set with
1713 appropriate ``-I/path`` include paths. The following example works with
1714 the bash shell, generating tags for the GnomeUI library::
1716 CFLAGS=`pkg-config --cflags libgnomeui-2.0` geany -g gnomeui.c.tags \
1717 /usr/include/libgnomeui-2.0/gnome.h
1719 You can adapt this command to use CFLAGS and header files appropriate
1720 for whichever libraries you want.
1723 Generating tag files on Windows
1724 *******************************
1725 This works basically the same as on other platforms::
1727 "c:\program files\geany\bin\geany" -g c:\mytags.php.tags c:\code\somefile.php
1733 You can ignore certain tags for C-based languages if they would lead
1734 to wrong parsing of the code. Use the *Tools->Configuration
1735 Files->ignore.tags* menu item to open the user ``ignore.tags`` file.
1736 See also `Configuration file paths`_.
1738 List all tag names you want to ignore in this file, separated by spaces
1743 G_GNUC_NULL_TERMINATED
1745 G_GNUC_WARN_UNUSED_RESULT
1747 This will parse code like:
1749 ``gchar **utils_strv_new(const gchar *first, ...)
1750 G_GNUC_NULL_TERMINATED;``
1752 More detailed information about ignore tags usage from the Exuberant Ctags
1755 Specifies a list of identifiers which are to be specially handled
1756 while parsing C and C++ source files. This option is specifically
1757 provided to handle special cases arising through the use of
1758 pre-processor macros. When the identifiers listed are simple identifiers,
1759 these identifiers will be ignored during parsing of the source files.
1760 If an identifier is suffixed with a '+' character, ctags will also
1761 ignore any parenthesis-enclosed argument list which may immediately
1762 follow the identifier in the source files.
1763 If two identifiers are separated with the '=' character, the first
1764 identifiers is replaced by the second identifiers for parsing purposes.
1766 For even more detailed information please read the manual page of
1769 Geany extends Ctags with a '*' character suffix - this means use
1770 prefix matching, e.g. G_GNUC_* will match G_GNUC_NULL_TERMINATED, etc.
1771 Note that prefix match items should be put after other items to ensure
1772 that items like G_GNUC_PRINTF+ get parsed correctly.
1778 You may adjust Geany's settings using the Edit --> Preferences
1779 dialog. Any changes you make there can be applied by hitting either
1780 the Apply or the OK button. These settings will persist between Geany
1781 sessions. Note that most settings here have descriptive popup bubble
1782 help -- just hover the mouse over the item in question to get help
1785 You may also adjust some View settings (under the View menu) that
1786 persist between Geany sessions. The settings under the Document menu,
1787 however, are only for the current document and revert to defaults
1788 when restarting Geany.
1791 In the paragraphs that follow, the text describing a dialog tab
1792 comes after the screenshot of that tab.
1795 General Startup preferences
1796 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
1798 .. image:: ./images/pref_dialog_gen_startup.png
1803 Load files from the last session
1804 On startup, load the same files you had open the last time you
1807 Load virtual terminal support
1808 Load the library for running a terminal in the message window area.
1810 Enable plugin support
1811 Allow plugins to be used in Geany.
1815 Save window position and geometry
1816 Save the current position and size of the main window so next time
1817 you open Geany it's in the same location.
1820 Have a dialog pop up to confirm that you really want to quit Geany.
1826 Path to start in when opening or saving files.
1827 It must be an absolute path.
1830 Path to start in when opening project files.
1833 By default Geany looks in the system installation and the user
1834 configuration - see `Plugins`_. In addition the path entered here will be
1836 Usually you do not need to set an additional path to search for
1837 plugins. It might be useful when Geany is installed on a multi-user machine
1838 and additional plugins are available in a common location for all users.
1839 Leave blank to not set an additional lookup path.
1842 General Miscellaneous preferences
1843 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1845 .. image:: ./images/pref_dialog_gen_misc.png
1850 Beep on errors when compilation has finished
1851 Have the computer make a beeping sound when compilation of your program
1852 has completed or any errors occurred.
1854 Switch status message list at new message
1855 Switch to the status message tab (in the notebook window at the bottom)
1856 once a new status message arrives.
1858 Suppress status messages in the status bar
1859 Remove all messages from the status bar. The messages are still displayed
1860 in the status messages window.
1863 Another option is to use the *Switch to Editor* keybinding - it
1864 reshows the document statistics on the status bar. See `Focus
1867 Use Windows File Open/Save dialogs
1868 Defines whether to use the native Windows File Open/Save dialogs or
1869 whether to use the GTK default dialogs.
1871 Auto-focus widgets (focus follows mouse)
1872 Give the focus automatically to widgets below the mouse cursor.
1873 This works for the main editor widget, the scribble, the toolbar search field
1874 goto line fields and the VTE.
1880 Always wrap search around the document when finding a match.
1882 Hide the Find dialog
1883 Hide the `Find`_ dialog after clicking Find Next/Previous.
1885 Use the current word under the cursor for Find dialogs
1886 Use current word under the cursor when opening the Find, Find in Files or Replace dialog and
1887 there is no selection. When this option is disabled, the search term last used in the
1888 appropriate Find dialog is used.
1890 Use the current file's directory for Find in Files
1891 When opening the Find in Files dialog, set the directory to search to the directory of the current
1892 active file. When this option is disabled, the directory of the last use of the Find in Files
1893 dialog is used. See `Find in Files`_ for details.
1898 Use project-based session files
1899 Save your current session when closing projects. You will be able to
1900 resume different project sessions, automatically opening the files
1901 you had open previously.
1903 Store project file inside the project base directory
1904 When creating new projects, the default path for the project file contains
1905 the project base path. Without this option enabled, the default project file
1906 path is one level above the project base path.
1907 In either case, you can easily set the final project file path in the
1908 *New Project* dialog. This option provides the more common
1909 defaults automatically for convenience.
1912 Interface preferences
1913 ^^^^^^^^^^^^^^^^^^^^^
1915 .. image:: ./images/pref_dialog_interface_interface.png
1921 Whether to show the sidebar at all.
1924 Show the list of functions, variables, and other information in the
1925 current document you are editing.
1928 Show all the documents you have open currently. This can be used to
1929 change between documents (see `Switching between documents`_) and
1930 to perform some common operations such as saving, closing and reloading.
1933 Whether to place the sidebar on the left or right of the editor window.
1939 Change the font used to display documents.
1942 Change the font used for the Symbols sidebar tab.
1945 Change the font used for the message window area.
1951 Show the status bar at the bottom of the main window. It gives information about
1952 the file you are editing like the line and column you are on, whether any
1953 modifications were done, the file encoding, the filetype and other information.
1955 Interface Notebook tab preferences
1956 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1958 .. image:: ./images/pref_dialog_interface_notebook.png
1964 Show a notebook tab for all documents so you can switch between them
1965 using the mouse (instead of using the Documents window).
1968 Make each tab show a close button so you can easily close open
1971 Placement of new file tabs
1972 Whether to create a document with its notebook tab to the left or
1973 right of all existing tabs.
1976 Whether to place file tabs next to the current tab
1977 rather than at the edges of the notebook.
1979 Double-clicking hides all additional widgets
1980 Whether to call the View->Toggle All Additional Widgets command
1981 when double-clicking on a notebook tab.
1987 Set the positioning of the editor's notebook tabs to the right,
1988 left, top, or bottom of the editing window.
1991 Set the positioning of the sidebar's notebook tabs to the right,
1992 left, top, or bottom of the sidebar window.
1995 Set the positioning of the message window's notebook tabs to the
1996 right, left, top, or bottom of the message window.
1999 Interface Toolbar preferences
2000 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2002 Affects the main toolbar underneath the menu bar.
2004 .. image:: ./images/pref_dialog_interface_toolbar.png
2010 Whether to show the toolbar.
2012 Append Toolbar to the Menu
2013 Allows to append the toolbar to the main menu bar instead of placing it below.
2014 This is useful to save vertical space.
2017 See `Customizing the toolbar`_.
2023 Select the toolbar icon style to use - either icons and text, just
2025 The choice System default uses whatever icon style is set by GTK.
2028 Select the size of the icons you see (large, small or very small).
2029 The choice System default uses whatever icon size is set by GTK.
2032 Editor Features preferences
2033 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2035 .. image:: ./images/pref_dialog_edit_features.png
2041 Show long lines wrapped around to new display lines.
2046 Whether to move the cursor to the first non-whitespace character
2047 on the line when you hit the home key on your keyboard. Pressing it
2048 again will go to the very start of the line.
2050 Disable Drag and Drop
2051 Do not allow the dragging and dropping of selected text in documents.
2054 Allow groups of lines in a document to be collapsed for easier
2057 Fold/Unfold all children of a fold point
2058 Whether to fold/unfold all child fold points when a parent line
2061 Use indicators to show compile errors
2062 Underline lines with compile errors using red squiggles to indicate
2063 them in the editor area.
2065 Newline strips trailing spaces
2066 Remove any whitespace at the end of the line when you hit the
2067 Enter/Return key. See also `Strip trailing spaces`_. Note
2068 auto indentation is calculated before stripping, so although this
2069 setting will clear a blank line, it will not set the next line
2070 indentation back to zero.
2072 Line breaking column
2073 The editor column number to insert a newline at when Line Breaking
2074 is enabled for the current document.
2076 Comment toggle marker
2077 A string which is added when toggling a line comment in a source file.
2078 It is used to mark the comment as toggled.
2081 Editor Indentation preferences
2082 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2084 .. image:: ./images/pref_dialog_edit_indentation.png
2089 See `Indentation`_ for more information.
2092 The width of a single indent size in spaces. By default the indent
2093 size is equivalent to 4 spaces.
2095 Detect width from file
2096 Try to detect and set the indent width based on file content, when
2100 When Geany inserts indentation, whether to use:
2104 * Tabs and Spaces, depending on how much indentation is on a line
2106 The *Tabs and Spaces* indent type is also known as *Soft tab
2107 support* in some other editors.
2109 Detect type from file
2110 Try to detect and set the indent type based on file content, when
2114 The type of auto-indentation you wish to use after pressing Enter,
2118 Just add the indentation of the previous line.
2120 Add indentation based on the current filetype and any characters at
2121 the end of the line such as ``{``, ``}`` for C, ``:`` for Python.
2123 Like *Current chars* but for C-like languages, make a closing
2124 ``}`` brace line up with the matching opening brace.
2127 If set, pressing tab will indent the current line or selection, and
2128 unindent when pressing Shift-tab. Otherwise, the tab key will
2129 insert a tab character into the document (which can be different
2130 from indentation, depending on the indent type).
2133 There are also separate configurable keybindings for indent &
2134 unindent, but this preference allows the tab key to have different
2135 meanings in different contexts - e.g. for snippet completion.
2137 Editor Completions preferences
2138 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2140 .. image:: ./images/pref_dialog_edit_completions.png
2146 Whether to replace special keywords after typing Tab into a
2147 pre-defined text snippet.
2148 See `User-definable snippets`_.
2150 XML/HTML tag auto-closing
2151 When you open an XML/HTML tag automatically generate its
2154 Automatic continuation multi-line comments
2155 Continue automatically multi-line comments in languages like C, C++
2156 and Java when a new line is entered inside such a comment.
2157 With this option enabled, Geany will insert a ``*`` on every new line
2158 inside a multi-line comment, for example when you press return in the
2162 * This is a C multi-line comment, press <Return>
2164 then Geany would insert::
2168 on the next line with the correct indentation based on the previous line,
2169 as long as the multi-line is not closed by ``*/``.
2171 Autocomplete symbols
2172 When you start to type a symbol name, look for the full string to
2173 allow it to be completed for you.
2175 Autocomplete all words in document
2176 When you start to type a word, Geany will search the whole document for
2177 words starting with the typed part to complete it, assuming there
2178 are no tag names to show.
2180 Drop rest of word on completion
2181 Remove any word part to the right of the cursor when choosing a
2182 completion list item.
2184 Characters to type for autocompletion
2185 Number of characters of a word to type before autocompletion is
2188 Completion list height
2189 The number of rows to display for the autocompletion window.
2191 Max. symbol name suggestions
2192 The maximum number of items in the autocompletion list.
2194 Symbol list update frequency
2195 The minimum delay (in milliseconds) between two symbol list updates.
2197 This option determines how frequently the tag list is updated for the
2198 current document. The smaller the delay, the more up-to-date the symbol
2199 list (and then the completions); but rebuilding the symbol list has a
2200 cost in performance, especially with large files.
2202 The default value is 250ms, which means the symbol list will be updated
2203 at most four times per second, even if the document changes continuously.
2205 A value of 0 disables automatic updates, so the symbol list will only be
2206 updated upon document saving.
2209 Auto-close quotes and brackets
2210 ``````````````````````````````
2212 Geany can automatically insert a closing bracket and quote characters when
2213 you open them. For instance, you type a ``(`` and Geany will automatically
2214 insert ``)``. With the following options, you can define for which
2215 characters this should work.
2218 Auto-close parenthesis when typing an opening one
2221 Auto-close curly brackets (braces) when typing an opening one
2224 Auto-close square brackets when typing an opening one
2227 Auto-close single quotes when typing an opening one
2230 Auto-close double quotes when typing an opening one
2233 Editor Display preferences
2234 ^^^^^^^^^^^^^^^^^^^^^^^^^^
2236 This is for visual elements displayed in the editor window.
2238 .. image:: ./images/pref_dialog_edit_display.png
2243 Invert syntax highlighting colors
2244 Invert all colors, by default this makes white text on a black
2247 Show indendation guides
2248 Show vertical lines to help show how much leading indentation there
2252 Mark all tabs with an arrow "-->" symbol and spaces with dots to
2253 show which kinds of whitespace are used.
2256 Display a symbol everywhere that a carriage return or line feed
2260 Show or hide the Line Number margin.
2263 Show or hide the small margin right of the line numbers, which is used
2266 Stop scrolling at last line
2267 When enabled Geany stops scrolling when at the last line of the document.
2268 Otherwise you can scroll one more page even if there are no real lines.
2274 The long line marker helps to indicate overly-long lines, or as a hint
2275 to the user for when to break the line.
2279 Show a thin vertical line in the editor window at the given column
2282 Change the background color of characters after the given column
2283 position to the color set below. (This is recommended over the
2284 *Line* setting if you use proportional fonts).
2286 Don't mark long lines at all.
2289 Set this value to a value greater than zero to specify the column
2290 where it should appear.
2292 Long line marker color
2293 Set the color of the long line marker.
2299 Virtual space is space beyond the end of each line.
2300 The cursor may be moved into virtual space but no real space will be
2301 added to the document until there is some text typed or some other
2302 text insertion command is used.
2305 Do not show virtual spaces
2307 Only for rectangular selections
2308 Only show virtual spaces beyond the end of lines when drawing a rectangular selection
2311 Always show virtual spaces beyond the end of lines
2317 .. image:: ./images/pref_dialog_files.png
2322 Open new documents from the command-line
2323 Whether to create new documents when passing filenames that don't
2324 exist from the command-line.
2326 Default encoding (new files)
2327 The type of file encoding you wish to use when creating files.
2329 Used fixed encoding when opening files
2330 Assume all files you are opening are using the type of encoding specified below.
2332 Default encoding (existing files)
2333 Opens all files with the specified encoding instead of auto-detecting it.
2334 Use this option when it's not possible for Geany to detect the exact encoding.
2336 Default end of line characters
2337 The end of line characters to which should be used for new files.
2338 On Windows systems, you generally want to use CR/LF which are the common
2339 characters to mark line breaks.
2340 On Unix-like systems, LF is default and CR is used on MAC systems.
2344 Perform formatting operations when a document is saved. These
2345 can each be undone with the Undo command.
2347 Ensure newline at file end
2348 Add a newline at the end of the document if one is missing.
2350 Ensure consistent line endings
2351 Ensures that newline characters always get converted before
2352 saving, avoiding mixed line endings in the same file.
2354 .. _Strip trailing spaces:
2356 Strip trailing spaces
2357 Remove any whitespace at the end of each document line.
2360 This does not apply to Diff documents, e.g. patch files.
2362 Replace tabs by space
2363 Replace all tabs in the document with the equivalent number of spaces.
2366 It is better to use spaces to indent than use this preference - see
2372 Recent files list length
2373 The number of files to remember in the recently used files list.
2376 The number of seconds to periodically check the current document's
2377 file on disk in case it has changed. Setting it to 0 will disable
2381 These checks are only performed on local files. Remote files are
2382 not checked for changes due to performance issues
2383 (remote files are files in ``~/.gvfs/``).
2389 .. image:: ./images/pref_dialog_tools.png
2395 The command to execute a script in a terminal. Occurrences of %c
2396 in the command are substituted with the run script name, see
2397 `Terminal emulators`_.
2400 The location of your web browser executable.
2403 The location of the grep executable.
2406 For Windows users: at the time of writing it is recommended to use
2407 the grep.exe from the UnxUtils project
2408 (http://sourceforge.net/projects/unxutils). The grep.exe from the
2409 Mingw project for instance might not work with Geany at the moment.
2415 Set this to a command to execute on the current word.
2416 You can use the "%s" wildcard to pass the current word below the cursor
2417 to the specified command.
2420 Template preferences
2421 ^^^^^^^^^^^^^^^^^^^^
2423 This data is used as meta data for various template text to insert into
2424 a document, such as the file header. You only need to set fields that
2425 you want to use in your template files.
2427 .. image:: ./images/pref_dialog_templ.png
2433 The name of the developer who will be creating files.
2436 The initials of the developer.
2439 The email address of the developer.
2442 You may wish to add anti-spam markup, e.g. ``name<at>site<dot>ext``.
2445 The company the developer is working for.
2448 The initial version of files you will be creating.
2451 Specify a format for the the {year} wildcard. You can use any conversion specifiers
2452 which can be used with the ANSI C strftime function. For details please see
2453 http://man.cx/strftime.
2456 Specify a format for the the {date} wildcard. You can use any conversion specifiers
2457 which can be used with the ANSI C strftime function. For details please see
2458 http://man.cx/strftime.
2461 Specify a format for the the {datetime} wildcard. You can use any conversion specifiers
2462 which can be used with the ANSI C strftime function. For details please see
2463 http://man.cx/strftime.
2466 Keybinding preferences
2467 ^^^^^^^^^^^^^^^^^^^^^^
2469 .. image:: ./images/pref_dialog_keys.png
2471 There are some commands listed in the keybinding dialog that are not, by default,
2472 bound to a key combination, and may not be available as a menu item.
2475 For more information see the section `Keybindings`_.
2478 Printing preferences
2479 ^^^^^^^^^^^^^^^^^^^^
2481 .. image:: ./images/pref_dialog_printing.png
2483 Use external command for printing
2484 Use a system command to print your file out.
2486 Use native GTK printing
2487 Let the GTK GUI toolkit handle your print request.
2490 Print the line numbers on the left of your paper.
2493 Print the page number on the bottom right of your paper.
2496 Print a header on every page that is sent to the printer.
2498 Use base name of the printed file
2499 Don't use the entire path for the header, only the filename.
2502 How the date should be printed. You can use the same format
2503 specifiers as in the ANSI C function strftime(). For details please
2504 see http://man.cx/strftime.
2510 .. image:: ./images/pref_dialog_various.png
2512 Rarely used preferences, explained in the table below. A few of them require
2513 restart to take effect, and a few other will only affect newly opened or created
2514 documents before restart.
2516 ================================ =========================================== ========== ===========
2517 Key Description Default Applies
2518 ================================ =========================================== ========== ===========
2520 use_gtk_word_boundaries Whether to look for the end of a word true to new
2521 when using word-boundary related documents
2522 Scintilla commands (see `Scintilla
2523 keyboard commands`_).
2524 brace_match_ltgt Whether to highlight <, > angle brackets. false immediately
2525 complete_snippets_whilst_editing Whether to allow completion of snippets false immediately
2526 when editing an existing line (i.e. there
2527 is some text after the current cursor
2528 position on the line). Only used when the
2529 keybinding `Complete snippet` is set to
2531 show_editor_scrollbars Whether to display scrollbars. If set to true immediately
2532 false, the horizontal and vertical
2533 scrollbars are hidden completely.
2534 indent_hard_tab_width The size of a tab character. Don't change 8 immediately
2535 it unless you really need to; use the
2536 indentation settings instead.
2537 **Interface related**
2538 show_symbol_list_expanders Whether to show or hide the small true to new
2539 expander icons on the symbol list documents
2541 allow_always_save Whether files can be saved always, even false immediately
2542 if they don't have any changes.
2543 By default, the Save button and menu
2544 item are disabled when a file is
2545 unchanged. When setting this option to
2546 true, the Save button and menu item are
2547 always active and files can be saved.
2548 compiler_tab_autoscroll Whether to automatically scroll to the true immediately
2549 last line of the output in the Compiler
2551 statusbar_template The status bar statistics line format. See below. immediately
2552 (See `Statusbar Templates`_ for details).
2553 new_document_after_close Whether to open a new document after all false immediately
2554 documents have been closed.
2555 msgwin_status_visible Whether to show the Status tab in the true immediately
2557 msgwin_compiler_visible Whether to show the Compiler tab in the true immediately
2559 msgwin_messages_visible Whether to show the Messages tab in the true immediately
2561 msgwin_scribble_visible Whether to show the Scribble tab in the true immediately
2564 emulation Terminal emulation mode. Only change this xterm immediately
2565 if you have VTE termcap files other than
2566 ``vte/termcap/xterm``.
2567 send_selection_unsafe By default, Geany strips any trailing false immediately
2568 newline characters from the current
2569 selection before sending it to the terminal
2570 to not execute arbitrary code. This is
2571 mainly a security feature.
2572 If, for whatever reasons, you really want
2573 it to be executed directly, set this option
2575 send_cmd_prefix String with which prefix the commands sent Empty immediately
2576 to the shell. This may be used to tell
2577 some shells (BASH with ``HISTCONTROL`` set
2578 to ``ignorespace``, ZSH with
2579 ``HIST_IGNORE_SPACE`` enabled, etc.) from
2580 putting these commands in their history by
2581 setting this to a space. Note that leading
2582 spaces must be escaped using `\s` in the
2585 use_atomic_file_saving Defines the mode how Geany saves files to false immediately
2586 disk. If disabled, Geany directly writes
2587 the content of the document to disk. This
2588 might cause loss of data when there is
2589 no more free space on disk to save the
2590 file. When set to true, Geany first saves
2591 the contents into a temporary file and if
2592 this succeeded, the temporary file is
2593 moved to the real file to save.
2594 This gives better error checking in case of
2595 no more free disk space. But it also
2596 destroys hard links of the original file
2597 and its permissions (e.g. executable flags
2598 are reset). Use this with care as it can
2599 break things seriously.
2600 The better approach would be to ensure your
2601 disk won't run out of free space.
2602 use_gio_unsafe_file_saving Whether to use GIO as the unsafe file true immediately
2603 saving backend. It is better on most
2604 situations but is known not to work
2605 correctly on some complex setups.
2606 gio_unsafe_save_backup Make a backup when using GIO unsafe file false immediately
2607 saving. Backup is named `filename~`.
2608 **Filetype related**
2609 extract_filetype_regex Regex to extract filetype name from file See below. immediately
2610 via capture group one.
2612 find_selection_type See `Find selection`_. 0 immediately
2613 **Build Menu related**
2614 number_ft_menu_items The maximum number of menu items in the 2 on restart
2615 filetype section of the Build menu.
2616 number_non_ft_menu_items The maximum number of menu items in the 3 on restart
2617 independent section of the Build menu.
2618 number_exec_menu_items The maximum number of menu items in the 2 on restart
2619 execute section of the Build menu.
2620 ================================ =========================================== ========== ===========
2622 The extract_filetype_regex has the default value GEANY_DEFAULT_FILETYPE_REGEX.
2627 The default statusbar template is (note ``\t`` = tab):
2629 ``line: %l / %L\t col: %c\t sel: %s\t %w %t %mmode: %M encoding: %e filetype: %f scope: %S``
2631 Settings the preference to an empty string will also cause Geany to use this
2634 The following format characters are available for the statusbar template:
2636 ============ ===========================================================
2637 Placeholder Description
2638 ============ ===========================================================
2639 ``%l`` The current line number starting at 1
2640 ``%L`` The total number of lines
2641 ``%c`` The current column number starting at 0
2642 ``%C`` The current column number starting at 1
2643 ``%s`` The number of selected characters or if only whole lines
2644 selected, the number of selected lines.
2645 ``%w`` Shows ``RO`` when the document is in read-only mode,
2646 otherwise shows whether the editor is in overtype (OVR)
2647 or insert (INS) mode.
2648 ``%t`` Shows the indentation mode, either tabs (TAB),
2649 spaces (SP) or both (T/S).
2650 ``%m`` Shows whether the document is modified (MOD) or nothing.
2651 ``%M`` The name of the document's line-endings (ex. ``Unix (LF)``)
2652 ``%e`` The name of the document's encoding (ex. UTF-8).
2653 ``%f`` The filetype of the document (ex. None, Python, C, etc).
2654 ``%S`` The name of the scope where the caret is located.
2655 ``%p`` The caret position in the entire document starting at 0.
2656 ``%r`` Shows whether the document is read-only (RO) or nothing.
2657 ``%Y`` The Scintilla style number at the caret position. This is
2658 useful if you're debugging color schemes or related code.
2659 ============ ===========================================================
2661 Terminal (VTE) preferences
2662 ^^^^^^^^^^^^^^^^^^^^^^^^^^
2664 See also: `Virtual terminal emulator widget (VTE)`_.
2666 .. image:: ./images/pref_dialog_vte.png
2672 Select the font that will be used in the terminal emulation control.
2675 Select the font color.
2678 Select the background color of the terminal.
2681 Select the background image to show behind the terminal's text.
2684 The number of lines buffered so that you can scroll though the history.
2687 The location of the shell on your system.
2690 Scroll the terminal to the prompt line when pressing a key.
2693 Scroll the output down.
2696 Let the terminal cursor blink.
2698 Override Geany keybindings
2699 Allow the VTE to receive keyboard shortcuts (apart from focus commands).
2701 Disable menu shortcut key (F10 by default)
2702 Disable the menu shortcut when you are in the virtual terminal.
2704 Follow path of the current file
2705 Make the path of the terminal change according to the path of the
2708 Execute programs in VTE
2709 Execute programs in the virtual terminal instead of using the external
2710 terminal tool. Note that if you run multiple execute commands at once
2711 the output may become mixed together in the VTE.
2713 Don't use run script
2714 Don't use the simple run script which is usually used to display
2715 the exit status of the executed program.
2716 This can be useful if you already have a program running in the VTE
2717 like a Python console (e.g. ipython). Use this with care.
2723 Project management is optional in Geany. Currently it can be used for:
2725 * Storing and opening session files on a project basis.
2726 * Overriding default settings with project equivalents.
2727 * Configuring the Build menu on a project basis.
2729 A list of session files can be stored and opened with the project
2730 when the *Use project-based session files* preference is enabled,
2731 in the *Project* group of the `Preferences`_ dialog.
2733 As long as a project is open, the Build menu will use
2734 the items defined in project's settings, instead of the defaults.
2735 See `Build Menu Configuration`_ for information on configuring the menu.
2737 The current project's settings are saved when it is closed, or when
2738 Geany is shutdown. When restarting Geany, the previously opened project
2739 file that was in use at the end of the last session will be reopened.
2741 The project menu items are detailed below.
2747 To create a new project, fill in the *Name* field. By default this
2748 will setup a new project file ``~/projects/name.geany``. Usually it's
2749 best to store all your project files in the same directory (they are
2750 independent of any source directory trees).
2752 The Base path text field is setup to use ``~/projects/name``. This
2753 can safely be set to any existing path -- it will not touch the file
2754 structure contained in it.
2760 You can set an optional description for the project. Currently it's
2761 only used for a template wildcard - see `Template wildcards`_.
2763 The *Base path* field is used as the directory to run the Build menu commands.
2764 The specified path can be an absolute path or it is considered to be
2765 relative to the project's file name.
2767 The *File patterns* field allows to specify a list of file patterns for the
2768 project, which can be used in the `Find in files`_ dialog.
2770 The *Indentation* tab allows you to override the default
2771 `Indentation`_ settings.
2777 The Open command displays a standard file chooser, starting in
2778 ``~/projects``. Choose a project file named with the ``.geany``
2781 When project session support is enabled, Geany will close the currently
2782 open files and open the session files associated with the project.
2788 Project file settings are saved when the project is closed.
2790 When project session support is enabled, Geany will close the project
2791 session files and open any previously closed default session files.
2796 After editing code with Geany, the next step is to compile, link, build,
2797 interpret, run etc. As Geany supports many languages each with a different
2798 approach to such operations, and as there are also many language independent
2799 software building systems, Geany does not have a built-in build system, nor
2800 does it limit which system you can use. Instead the build menu provides
2801 a configurable and flexible means of running any external commands to
2802 execute your preferred build system.
2804 This section provides a description of the default configuration of the
2805 build menu and then covers how to configure it, and where the defaults fit in.
2807 Running the commands from within Geany has two benefits:
2809 * The current file is automatically saved before the command is run.
2810 * The output is captured in the Compiler notebook tab and parsed for
2813 Warnings and errors that can be parsed for line numbers will be shown in
2814 red in the Compiler tab and you can click on them to switch to the relevant
2815 source file (or open it) and mark the line number. Also lines with
2816 warnings or errors are marked in the source, see `Indicators`_ below.
2819 If Geany's default error message parsing does not parse errors for
2820 the tool you're using, you can set a custom regex in the Build Commands
2821 Dialog, see `Build Menu Configuration`_.
2826 Indicators are red squiggly underlines which are used to highlight
2827 errors which occurred while compiling the current file. So you can
2828 easily see where your code failed to compile. You can remove them by
2829 selecting *Remove Error Indicators* in the Document menu.
2831 If you do not like this feature, you can disable it - see `Editor Features
2835 Default build menu items
2836 ^^^^^^^^^^^^^^^^^^^^^^^^
2837 Depending on the current file's filetype, the default Build menu will contain
2838 the following items:
2843 * Make Custom Target
2848 * Set Build Menu Commands
2854 The Compile command has different uses for different kinds of files.
2856 For compilable languages such as C and C++, the Compile command is
2857 set up to compile the current source file into a binary object file.
2859 Java source files will be compiled to class file bytecode.
2861 Interpreted languages such as Perl, Python, Ruby will compile to
2862 bytecode if the language supports it, or will run a syntax check,
2863 or if that is not available will run the file in its language interpreter.
2868 For compilable languages such as C and C++, the Build command will link
2869 the current source file's equivalent object file into an executable. If
2870 the object file does not exist, the source will be compiled and linked
2871 in one step, producing just the executable binary.
2873 Interpreted languages do not use the Build command.
2876 If you need complex settings for your build system, or several
2877 different settings, then writing a Makefile and using the Make
2878 commands is recommended; this will also make it easier for users to
2879 build your software.
2885 This runs "make" in the same directory as the
2891 This is similar to running 'Make' but you will be prompted for
2892 the make target name to be passed to the Make tool. For example,
2893 typing 'clean' in the dialog prompt will run "make clean".
2899 Make object will run "make current_file.o" in the same directory as
2900 the current file, using the filename for 'current_file'. It is useful
2901 for building just the current file without building the whole project.
2906 The next error item will move to the next detected error in the file.
2910 The previous error item will move to the previous detected error in the file.
2915 Execute will run the corresponding executable file, shell script or
2916 interpreted script in a terminal window. The command set in the
2917 "Set Build Commands" dialog is run in a script to ensure the terminal
2918 stays open after execution completes. Note: see `Terminal emulators`_
2919 below for the command format. Alternatively the built-in VTE can be used
2920 if it is available - see `Virtual terminal emulator widget (VTE)`_.
2922 After your program or script has finished executing, the run script will
2923 prompt you to press the return key. This allows you to review any text
2924 output from the program before the terminal window is closed.
2927 The execute command output is not parsed for errors.
2930 Stopping running processes
2931 ``````````````````````````
2933 When there is a running program, the Execute menu item in the menu and
2934 the Run button in the toolbar
2935 each become a stop button so you can stop the current running program (and
2936 any child processes). This works by sending the SIGQUIT signal to the process.
2938 Depending on the process you started it is possible that the process
2939 cannot be stopped. For example this can happen when the process creates
2940 more than one child process.
2946 The Terminal field of the tools preferences tab requires a command to
2947 execute the terminal program and to pass it the name of the Geany run
2948 script that it should execute in a Bourne compatible shell (eg /bin/sh).
2949 The marker "%c" is substituted with the name of the Geany run script,
2950 which is created in the working directory set in the Build commands
2951 dialog, see `Build menu commands dialog`_ for details.
2953 As an example the default (Linux) command is::
2955 xterm -e "/bin/sh %c"
2961 By default Compile, Build and Execute are fairly basic commands. You
2962 may wish to customise them using *Set Build Commands*.
2964 E.g. for C you can add any include paths and compile flags for the
2965 compiler, any library names and paths for the linker, and any
2966 arguments you want to use when running Execute.
2968 Build menu configuration
2969 ^^^^^^^^^^^^^^^^^^^^^^^^
2971 The build menu has considerable flexibility and configurability, allowing
2972 both menu labels the commands they execute and the directory they execute
2973 in to be configured.
2975 For example, if you change one of the default make commands to run say 'waf'
2976 you can also change the label to match.
2978 These settings are saved automatically when Geany is shut down.
2980 The build menu is divided into four groups of items each with different
2983 * Filetype build commands - are configurable and depend on the filetype of the
2984 current document; they capture output in the compiler tab and parse it for
2986 * Independent build commands - are configurable and mostly don't depend on the
2987 filetype of the current document; they also capture output in the
2988 compiler tab and parse it for errors.
2989 * Execute commands - are configurable and intended for executing your
2990 program or other long running programs. The output is not parsed for errors
2991 and is directed to the terminal command selected in preferences.
2992 * Fixed commands - these perform built-in actions:
2994 * Go to the next error.
2995 * Go to the previous error.
2996 * Show the build menu commands dialog.
2998 The maximum numbers of items in each of the configurable groups can be
2999 configured in the `Various preferences`_. Even though the maximum number of
3000 items may have been increased, only those menu items that have values
3001 configured are shown in the menu.
3003 The groups of menu items obtain their configuration from four potential
3004 sources. The highest priority source that has the menu item defined will
3005 be used. The sources in decreasing priority are:
3007 * A project file if open
3008 * The user preferences
3009 * The system filetype definitions
3012 The detailed relationships between sources and the configurable menu item groups
3013 is shown in the following table.
3015 +--------------+---------------------+--------------------------+-------------------+-------------------------------+
3016 | Group | Project File | Preferences | System Filetype | Defaults |
3017 +==============+=====================+==========================+===================+===============================+
3018 | Filetype | Loads From: project | Loads From: | Loads From: | None |
3019 | | file | filetypes.xxx file in | filetypes.xxx in | |
3020 | | | ~/.config/geany/filedefs | Geany install | |
3021 | | Saves To: project | | | |
3022 | | file | Saves to: as above, | Saves to: as user | |
3023 | | | creating if needed. | preferences left. | |
3024 +--------------+---------------------+--------------------------+-------------------+-------------------------------+
3025 | Filetype | Loads From: project | Loads From: | Loads From: | 1: |
3026 | Independent | file | geany.conf file in | filetypes.xxx in | Label: _Make |
3027 | | | ~/.config/geany | Geany install | Command: make |
3028 | | Saves To: project | | | |
3029 | | file | Saves to: as above, | Saves to: as user | 2: |
3030 | | | creating if needed. | preferences left. | Label: Make Custom _Target |
3031 | | | | | Command: make |
3034 | | | | | Label: Make _Object |
3035 | | | | | Command: make %e.o |
3036 +--------------+---------------------+--------------------------+-------------------+-------------------------------+
3037 | Execute | Loads From: project | Loads From: | Loads From: | Label: _Execute |
3038 | | file or else | geany.conf file in | filetypes.xxx in | Command: ./%e |
3039 | | filetype defined in | ~/.config/geany or else | Geany install | |
3040 | | project file | filetypes.xxx file in | | |
3041 | | | ~/.config/geany/filedefs | Saves To: as user | |
3042 | | Saves To: | | preferences left. | |
3043 | | project file | Saves To: | | |
3044 | | | filetypes.xxx file in | | |
3045 | | | ~/.config/geany/filedefs | | |
3046 +--------------+---------------------+--------------------------+-------------------+-------------------------------+
3048 The following notes on the table reference cells by coordinate as (group,source):
3050 * General - for filetypes.xxx substitute the appropriate extension for
3051 the filetype of the current document for xxx - see `filenames`_.
3053 * System Filetypes - Labels loaded from these sources are locale sensitive
3054 and can contain translations.
3056 * (Filetype, Project File) and (Filetype, Preferences) - preferences use a full
3057 filetype file so that users can configure all other filetype preferences
3058 as well. Projects can only configure menu items per filetype. Saving
3059 in the project file means that there is only one file per project not
3062 * (Filetype-Independent, System Filetype) - although conceptually strange, defining
3063 filetype-independent commands in a filetype file, this provides the ability to
3064 define filetype dependent default menu items.
3066 * (Execute, Project File) and (Execute, Preferences) - the project independent
3067 execute and preferences independent execute commands can only be set by hand
3068 editing the appropriate file, see `Preferences file format`_ and `Project file
3071 Build menu commands dialog
3072 ^^^^^^^^^^^^^^^^^^^^^^^^^^
3074 Most of the configuration of the build menu is done through the Build Menu
3075 Commands Dialog. You edit the configuration sourced from preferences in the
3076 dialog opened from the Build->Build Menu Commands item and you edit the
3077 configuration from the project in the build tab of the project preferences
3078 dialog. Both use the same form shown below.
3080 .. image:: ./images/build_menu_commands_dialog.png
3082 The dialog is divided into three sections:
3084 * Filetype build commands (selected based on the current document's filetype).
3085 * Independent build commands (available regardless of filetype).
3086 * Filetype execute commands.
3088 The filetype and independent sections also each contain a field for the regular
3089 expression used for parsing command output for error and warning messages.
3091 The columns in the first three sections allow setting of the label, command,
3092 and working directory to run the command in.
3094 An item with an empty label will not be shown in the menu.
3096 An empty working directory will default to the directory of the current document.
3097 If there is no current document then the command will not run.
3099 The dialog will always show the command selected by priority, not just the
3100 commands configured in this configuration source. This ensures that you always
3101 see what the menu item is going to do if activated.
3103 If the current source of the menu item is higher priority than the
3104 configuration source you are editing then the command will be shown
3105 in the dialog but will be insensitive (greyed out). This can't happen
3106 with the project source but can with the preferences source dialog.
3108 The clear buttons remove the definition from the configuration source you are editing.
3109 When you do this the command from the next lower priority source will be shown.
3110 To hide lower priority menu items without having anything show in the menu
3111 configure with a nothing in the label but at least one character in the command.
3113 Substitutions in commands and working directories
3114 `````````````````````````````````````````````````
3116 The first occurence of each of the following character sequences in each of the
3117 command and working directory fields is substituted by the items specified below
3118 before the command is run.
3120 * %d - substituted by the absolute path to the directory of the current file.
3121 * %e - substituted by the name of the current file without the extension or path.
3122 * %f - substituted by the name of the current file without the path.
3123 * %p - if a project is open, substituted by the base path from the project.
3126 If the basepath set in the project preferences is not an absolute path , then it is
3127 taken as relative to the directory of the project file. This allows a project file
3128 stored in the source tree to specify all commands and working directories relative
3129 to the tree itself, so that the whole tree including the project file, can be moved
3130 and even checked into and out of version control without having to re-configure the
3133 Build menu keyboard shortcuts
3134 `````````````````````````````
3136 Keyboard shortcuts can be defined for the first two filetype menu items, the first three
3137 independent menu items, the first two execute menu items and the fixed menu items.
3138 In the keybindings configuration dialog (see `Keybinding preferences`_)
3139 these items are identified by the default labels shown in the `Build Menu`_ section above.
3141 It is currently not possible to bind keyboard shortcuts to more than these menu items.
3143 You can also use underlines in the labels to set mnemonic characters.
3148 The configurable Build Menu capability was introduced in Geany 0.19 and
3149 required a new section to be added to the configuration files (See
3150 `Preferences file format`_). Geany will still load older format project,
3151 preferences and filetype file settings and will attempt to map them into the new
3152 configuration format. There is not a simple clean mapping between the formats.
3153 The mapping used produces the most sensible results for the majority of cases.
3154 However, if they do not map the way you want, you may have to manually
3155 configure some settings using the Build Commands
3156 Dialog or the Build tab of the project preferences dialog.
3158 Any setting configured in either of these dialogs will override settings mapped from
3159 older format configuration files.
3164 Since Geany 0.13 there has been printing support using GTK's printing API.
3165 The printed page(s) will look nearly the same as on your screen in Geany.
3166 Additionally, there are some options to modify the printed page(s).
3169 The background text color is set to white, except for text with
3170 a white foreground. This allows dark color schemes to save ink
3173 You can define whether to print line numbers, page numbers at the bottom of
3174 each page and whether to print a page header on each page. This header
3175 contains the filename of the printed document, the current page number and
3176 the date and time of printing. By default, the file name of the document
3177 with full path information is added to the header. If you prefer to add
3178 only the basename of the file(without any path information) you can set it
3179 in the preferences dialog. You can also adjust the format of the date and
3180 time added to the page header. The available conversion specifiers are the
3181 same as the ones which can be used with the ANSI C strftime function.
3183 All of these settings can also be changed in the print dialog just before
3184 actual printing is done.
3185 On Unix-like systems the provided print dialog offers a print preview. The
3186 preview file is opened with a PDF viewer and by default GTK uses ``evince``
3187 for print preview. If you have not installed evince or just want to use
3188 another PDF viewer, you can change the program to use in the file
3189 ``.gtkrc-2.0`` (usually found in your home directory). Simply add a line
3192 gtk-print-preview-command = "epdfview %f"
3194 at the end of the file. Of course, you can also use xpdf, kpdf or whatever
3195 as the print preview command.
3197 Geany also provides an alternative basic printing support using a custom
3198 print command. However, the printed document contains no syntax highlighting.
3199 You can adjust the command to which the filename is passed in the preferences
3200 dialog. The default command is::
3204 ``%f`` will be substituted by the filename of the current file. Geany
3205 will not show errors from the command itself, so you should make
3206 sure that it works before(e.g. by trying to execute it from the
3209 A nicer example, which many prefer is::
3211 % a2ps -1 --medium=A4 -o - %f | xfprint4
3213 But this depends on a2ps and xfprint4. As a replacement for xfprint4,
3214 gtklp or similar programs can be used.
3221 Plugins are loaded at startup, if the *Enable plugin support*
3222 general preference is set. There is also a command-line option,
3223 ``-p``, which prevents plugins being loaded. Plugins are scanned in
3224 the following directories:
3226 * ``$prefix/lib/geany`` on Unix-like systems (see `Installation prefix`_)
3227 * The ``lib`` subfolder of the installation path on Windows.
3228 * The ``plugins`` subfolder of the user configuration directory - see
3229 `Configuration file paths`_.
3230 * The `Extra plugin path` preference (usually blank) - see `Paths`_.
3232 Most plugins add menu items to the *Tools* menu when they are loaded.
3234 See also `Plugin documentation`_ for information about single plugins
3235 which are included in Geany.
3239 The Plugin Manager dialog lets you choose which plugins
3240 should be loaded at startup. You can also load and unload plugins on the
3241 fly using this dialog. Once you click the checkbox for a specific plugin
3242 in the dialog, it is loaded or unloaded according to its previous state.
3243 By default, no plugins are loaded at startup until you select some.
3244 You can also configure some plugin specific options if the plugin
3251 Geany supports the default keyboard shortcuts for the Scintilla
3252 editing widget. For a list of these commands, see `Scintilla
3253 keyboard commands`_. The Scintilla keyboard shortcuts will be overridden
3254 by any custom keybindings with the same keyboard shortcut.
3260 There are some non-configurable bindings to switch between documents,
3261 listed below. These can also be overridden by custom keybindings.
3263 =============== ==================================
3265 =============== ==================================
3266 Alt-[1-9] Select left-most tab, from 1 to 9.
3267 Alt-0 Select right-most tab.
3268 =============== ==================================
3270 See also `Notebook tab keybindings`_.
3273 Configurable keybindings
3274 ^^^^^^^^^^^^^^^^^^^^^^^^
3276 For all actions listed below you can define your own keybindings. Open
3277 the Preferences dialog, select the desired action and click on
3278 change. In the resulting dialog you can press the key combination you
3279 want to assign to the action and it will be saved when you press OK.
3280 You can define only one key combination for each action and each key
3281 combination can only be defined for one action.
3283 The following tables list all customizable keyboard shortcuts, those
3284 which are common to many applications are marked with (C) after the
3289 =============================== ========================= ==================================================
3290 Action Default shortcut Description
3291 =============================== ========================= ==================================================
3292 New Ctrl-N (C) Creates a new file.
3294 Open Ctrl-O (C) Opens a file.
3296 Open selected file Ctrl-Shift-O Opens the selected filename.
3298 Re-open last closed tab Re-opens the last closed document tab.
3300 Save Ctrl-S (C) Saves the current file.
3302 Save As Saves the current file under a new name.
3304 Save all Ctrl-Shift-S Saves all open files.
3306 Close all Ctrl-Shift-W Closes all open files.
3308 Close Ctrl-W (C) Closes the current file.
3310 Reload file Ctrl-R (C) Reloads the current file. All unsaved changes
3313 Print Ctrl-P (C) Prints the current file.
3315 Quit Ctrl-Q (C) Quits Geany.
3316 =============================== ========================= ==================================================
3321 =============================== ========================= ==================================================
3322 Action Default shortcut Description
3323 =============================== ========================= ==================================================
3324 Undo Ctrl-Z (C) Un-does the last action.
3326 Redo Ctrl-Y Re-does the last action.
3328 Delete current line(s) Ctrl-K Deletes the current line (and any lines with a
3331 Delete to line end Ctrl-Shift-Delete Deletes from the current caret position to the
3332 end of the current line.
3334 Duplicate line or selection Ctrl-D Duplicates the current line or selection.
3336 Transpose current line Transposes the current line with the previous one.
3338 Scroll to current line Ctrl-Shift-L Scrolls the current line into the centre of the
3339 view. The cursor position and or an existing
3340 selection will not be changed.
3342 Scroll up by one line Alt-Up Scrolls the view.
3344 Scroll down by one line Alt-Down Scrolls the view.
3346 Complete word Ctrl-Space Shows the autocompletion list. If already showing
3347 tag completion, it shows document word completion
3348 instead, even if it is not enabled for automatic
3349 completion. Likewise if no tag suggestions are
3350 available, it shows document word completion.
3352 Show calltip Ctrl-Shift-Space Shows a calltip for the current function or
3355 Show macro list Ctrl-Return Shows a list of available macros and variables in
3358 Complete snippet Tab If you type a construct like if or for and press
3359 this key, it will be completed with a matching
3362 Suppress snippet completion If you type a construct like if or for and press
3363 this key, it will not be completed, and a space or
3364 tab will be inserted, depending on what the
3365 construct completion keybinding is set to. For
3366 example, if you have set the construct completion
3367 keybinding to space, then setting this to
3368 Shift+space will prevent construct completion and
3371 Context Action Executes a command and passes the current word
3372 (near the cursor position) or selection as an
3373 argument. See the section called `Context
3376 Move cursor in snippet Jumps to the next defined cursor positions in a
3377 completed snippets if multiple cursor positions
3380 Word part completion Tab When the autocompletion list is visible, complete
3381 the currently selected item up to the next word
3384 Move line(s) up Alt-PageUp Move the current line or selected lines up by
3387 Move line(s) down Alt-PageDown Move the current line or selected lines down by
3389 =============================== ========================= ==================================================
3392 Clipboard keybindings
3393 `````````````````````
3394 =============================== ========================= ==================================================
3395 Action Default shortcut Description
3396 =============================== ========================= ==================================================
3397 Cut Ctrl-X (C) Cut the current selection to the clipboard.
3399 Copy Ctrl-C (C) Copy the current selection to the clipboard.
3401 Paste Ctrl-V (C) Paste the clipboard text into the current document.
3403 Cut current line(s) Ctrl-Shift-X Cuts the current line (and any lines with a
3404 selection) to the clipboard.
3406 Copy current line(s) Ctrl-Shift-C Copies the current line (and any lines with a
3407 selection) to the clipboard.
3408 =============================== ========================= ==================================================
3413 =============================== ========================= ==================================================
3414 Action Default shortcut Description
3415 =============================== ========================= ==================================================
3416 Select all Ctrl-A (C) Makes a selection of all text in the current
3419 Select current word Alt-Shift-W Selects the current word under the cursor.
3421 Select current paragraph Alt-Shift-P Selects the current paragraph under the cursor
3422 which is defined by two empty lines around it.
3424 Select current line(s) Alt-Shift-L Selects the current line under the cursor (and any
3425 partially selected lines).
3427 Select to previous word part (Extend) selection to previous word part boundary.
3429 Select to next word part (Extend) selection to next word part boundary.
3430 =============================== ========================= ==================================================
3435 =============================== ========================= ==================================================
3436 Action Default shortcut Description
3437 =============================== ========================= ==================================================
3438 Insert date Shift-Alt-D Inserts a customisable date.
3440 Insert alternative whitespace Inserts a tab character when spaces should
3441 be used for indentation and inserts space
3442 characters of the amount of a tab width when
3443 tabs should be used for indentation.
3445 Insert New Line Before Current Inserts a new line with indentation.
3447 Insert New Line After Current Inserts a new line with indentation.
3448 =============================== ========================= ==================================================
3453 =============================== ========================= ==================================================
3454 Action Default shortcut Description
3455 =============================== ========================= ==================================================
3456 Toggle case of selection Ctrl-Alt-U Changes the case of the selection. A lowercase
3457 selection will be changed into uppercase and vice
3458 versa. If the selection contains lower- and
3459 uppercase characters, all will be converted to
3462 Comment line Comments current line or selection.
3464 Uncomment line Uncomments current line or selection.
3466 Toggle line commentation Ctrl-E Comments a line if it is not commented or removes
3467 a comment if the line is commented.
3469 Increase indent Ctrl-I Indents the current line or selection by one tab
3470 or by spaces in the amount of the tab width
3473 Decrease indent Ctrl-U Removes one tab or the amount of spaces of
3474 the tab width setting from the indentation of the
3475 current line or selection.
3477 Increase indent by one space Indents the current line or selection by one
3480 Decrease indent by one space Deindents the current line or selection by one
3483 Smart line indent Indents the current line or all selected lines
3484 with the same indentation as the previous line.
3486 Send to Custom Command 1 (2,3) Ctrl-1 (2,3) Passes the current selection to a configured
3487 external command (available for the first
3488 three configured commands, see
3489 `Sending text through custom commands`_ for
3492 Send Selection to Terminal Sends the current selection or the current
3493 line (if there is no selection) to the
3494 embedded Terminal (VTE).
3496 Reflow lines/block Reformat selected lines or current
3497 (indented) text block,
3498 breaking lines at the long line marker or the
3499 line breaking column if line breaking is
3500 enabled for the current document.
3501 =============================== ========================= ==================================================
3504 Settings keybindings
3505 ````````````````````
3506 =============================== ========================= ==================================================
3507 Action Default shortcut Description
3508 =============================== ========================= ==================================================
3509 Preferences Ctrl-Alt-P Opens preferences dialog.
3511 Plugin Preferences Opens plugin preferences dialog.
3512 =============================== ========================= ==================================================
3517 =============================== ========================= ==================================================
3518 Action Default shortcut Description
3519 =============================== ========================= ==================================================
3520 Find Ctrl-F (C) Opens the Find dialog.
3522 Find Next Ctrl-G Finds next result.
3524 Find Previous Ctrl-Shift-G Finds previous result.
3526 Find Next Selection Finds next occurence of selected text.
3528 Find Previous Selection Finds previous occurence of selected text.
3530 Replace Ctrl-H (C) Opens the Replace dialog.
3532 Find in files Ctrl-Shift-F Opens the Find in files dialog.
3534 Next message Jumps to the line with the next message in
3535 the Messages window.
3537 Previous message Jumps to the line with the previous message
3538 in the Messages window.
3540 Find Usage Ctrl-Shift-E Finds all occurrences of the current word (near
3541 the keyboard cursor) or selection in all open
3542 documents and displays them in the messages
3545 Find Document Usage Ctrl-Shift-D Finds all occurrences of the current word (near
3546 the keyboard cursor) or selection in the current
3547 document and displays them in the messages
3550 Mark All Ctrl-Shift-M Highlight all matches of the current
3551 word/selection in the current document
3552 with a colored box. If there's nothing to
3553 find, or the cursor is next to an existing match,
3554 the highlighted matches will be cleared.
3555 =============================== ========================= ==================================================
3560 =============================== ========================= ==================================================
3561 Action Default shortcut Description
3562 =============================== ========================= ==================================================
3563 Navigate forward a location Alt-Right (C) Switches to the next location in the navigation
3564 history. See the section called `Code Navigation
3567 Navigate back a location Alt-Left (C) Switches to the previous location in the
3568 navigation history. See the section called
3569 `Code navigation history`_.
3571 Go to line Ctrl-L Focuses the Go to Line entry (if visible) or
3572 shows the Go to line dialog.
3574 Goto matching brace Ctrl-B If the cursor is ahead or behind a brace, then it
3575 is moved to the brace which belongs to the current
3576 one. If this keyboard shortcut is pressed again,
3577 the cursor is moved back to the first brace.
3579 Toggle marker Ctrl-M Set a marker on the current line, or clear the
3580 marker if there already is one.
3582 Goto next marker Ctrl-. Goto the next marker in the current document.
3584 Goto previous marker Ctrl-, Goto the previous marker in the current document.
3586 Go to tag definition Ctrl-T Jump to the definition of the current word or
3587 selection. See `Go to tag definition`_.
3589 Go to tag declaration Ctrl-Shift-T Jump to the declaration of the current word or
3590 selection. See `Go to tag declaration`_.
3592 Go to Start of Line Home Move the caret to the start of the line.
3593 Behaves differently if smart_home_key_ is set.
3595 Go to End of Line End Move the caret to the end of the line.
3597 Go to Start of Display Line Alt-Home Move the caret to the start of the display line.
3598 This is useful when you use line wrapping and
3599 want to jump to the start of the wrapped, virtual
3600 line, not the real start of the whole line.
3601 If the line is not wrapped, it behaves like
3602 `Go to Start of Line`.
3604 Go to End of Display Line Alt-End Move the caret to the end of the display line.
3605 If the line is not wrapped, it behaves like
3606 `Go to End of Line`.
3608 Go to Previous Word Part Ctrl-/ Goto the previous part of the current word.
3610 Go to Next Word Part Ctrl-\\ Goto the next part of the current word.
3611 =============================== ========================= ==================================================
3615 =============================== ========================= ==================================================
3616 Action Default shortcut Description
3617 =============================== ========================= ==================================================
3618 Fullscreen F11 (C) Switches to fullscreen mode.
3620 Toggle Messages Window Toggles the message window (status and compiler
3621 messages) on and off.
3623 Toggle Sidebar Shows or hides the sidebar.
3625 Toggle all additional widgets Hide and show all additional widgets like the
3626 notebook tabs, the toolbar, the messages window
3629 Zoom In Ctrl-+ (C) Zooms in the text.
3631 Zoom Out Ctrl-- (C) Zooms out the text.
3633 Zoom Reset Ctrl-0 Reset any previous zoom on the text.
3634 =============================== ========================= ==================================================
3638 ================================ ========================= ==================================================
3639 Action Default shortcut Description
3640 ================================ ========================= ==================================================
3641 Switch to Editor F2 Switches to editor widget.
3642 Also reshows the document statistics line
3643 (after a short timeout).
3645 Switch to Search Bar F7 Switches to the search bar in the toolbar (if
3648 Switch to Message Window Focus the Message Window's current tab.
3650 Switch to Compiler Focus the Compiler message window tab.
3652 Switch to Messages Focus the Messages message window tab.
3654 Switch to Scribble F6 Switches to scribble widget.
3656 Switch to VTE F4 Switches to VTE widget.
3658 Switch to Sidebar Focus the Sidebar.
3660 Switch to Sidebar Symbol List Focus the Symbol list tab in the Sidebar
3663 Switch to Sidebar Document List Focus the Document list tab in the Sidebar
3665 ================================ ========================= ==================================================
3668 Notebook tab keybindings
3669 ````````````````````````
3670 =============================== ========================= ==================================================
3671 Action Default shortcut Description
3672 =============================== ========================= ==================================================
3673 Switch to left document Ctrl-PageUp (C) Switches to the previous open document.
3675 Switch to right document Ctrl-PageDown (C) Switches to the next open document.
3677 Switch to last used document Ctrl-Tab Switches to the previously shown document (if it's
3679 Holding Ctrl (or another modifier if the keybinding
3680 has been changed) will show a dialog, then repeated
3681 presses of the keybinding will switch to the 2nd-last
3682 used document, 3rd-last, etc. Also known as
3683 Most-Recently-Used documents switching.
3685 Move document left Ctrl-Shift-PageUp Changes the current document with the left hand
3688 Move document right Ctrl-Shift-PageDown Changes the current document with the right hand
3691 Move document first Moves the current document to the first position.
3693 Move document last Moves the current document to the last position.
3694 =============================== ========================= ==================================================
3697 Document keybindings
3698 ````````````````````
3699 ==================================== ==================== ==================================================
3700 Action Default shortcut Description
3701 ==================================== ==================== ==================================================
3702 Clone See `Cloning documents`_.
3704 Replace tabs by space Replaces all tabs with the right amount of spaces.
3706 Replace spaces by tabs Replaces leading spaces with tab characters.
3708 Toggle current fold Toggles the folding state of the current code block.
3710 Fold all Folds all contractible code blocks.
3712 Unfold all Unfolds all contracted code blocks.
3714 Reload symbol list Ctrl-Shift-R Reloads the tag/symbol list.
3716 Toggle Line wrapping Enables or disables wrapping of long lines.
3718 Toggle Line breaking Enables or disables automatic breaking of long
3719 lines at a configurable column.
3721 Remove Markers Remove any markers on lines or words which
3722 were set by using 'Mark All' in the
3723 search dialog or by manually marking lines.
3725 Remove Error Indicators Remove any error indicators in the
3728 Remove Markers and Error Indicators Combines ``Remove Markers`` and
3729 ``Remove Error Indicators``.
3730 ==================================== ==================== ==================================================
3735 =============================== ========================= ==================================================
3736 Action Default shortcut Description
3737 =============================== ========================= ==================================================
3738 New Create a new project.
3739 Open Opens a project file.
3740 Properties Shows project properties.
3741 Close Close the current project.
3742 =============================== ========================= ==================================================
3747 =============================== ========================= ==================================================
3748 Action Default shortcut Description
3749 =============================== ========================= ==================================================
3750 Compile F8 Compiles the current file.
3752 Build F9 Builds (compiles if necessary and links) the
3755 Make all Shift-F9 Builds the current file with the Make tool.
3757 Make custom target Ctrl-Shift-F9 Builds the current file with the Make tool and a
3760 Make object Shift-F8 Compiles the current file with the Make tool.
3762 Next error Jumps to the line with the next error from the
3765 Previous error Jumps to the line with the previous error from
3766 the last build process.
3768 Run F5 Executes the current file in a terminal emulation.
3770 Set Build Commands Opens the build commands dialog.
3771 =============================== ========================= ==================================================
3776 =============================== ========================= ==================================================
3777 Action Default shortcut Description
3778 =============================== ========================= ==================================================
3779 Show Color Chooser Opens the Color Chooser dialog.
3780 =============================== ========================= ==================================================
3785 =============================== ========================= ==================================================
3786 Action Default shortcut Description
3787 =============================== ========================= ==================================================
3788 Help F1 (C) Opens the manual.
3789 =============================== ========================= ==================================================
3797 You must use UTF-8 encoding *without BOM* for configuration files.
3800 Configuration file paths
3801 ------------------------
3802 Geany has default configuration files installed for the system and
3803 also per-user configuration files.
3805 The system files should not normally be edited because they will be
3806 overwritten when upgrading Geany.
3808 The user configuration directory can be overridden with the ``-c``
3809 switch, but this is not normally done. See `Command line options`_.
3812 Any missing subdirectories in the user configuration directory
3813 will be created when Geany starts.
3815 You can check the paths Geany is using with *Help->Debug Messages*.
3816 Near the top there should be 2 lines with something like::
3818 Geany-INFO: System data dir: /usr/share/geany
3819 Geany-INFO: User config dir: /home/username/.config/geany
3822 Paths on Unix-like systems
3823 ^^^^^^^^^^^^^^^^^^^^^^^^^^
3824 The system path is ``$prefix/share/geany``, where ``$prefix`` is the
3825 path where Geany is installed (see `Installation prefix`_).
3827 The user configuration directory is normally:
3828 ``/home/username/.config/geany``
3832 The system path is the ``data`` subfolder of the installation path
3835 The user configuration directory might vary, but on Windows XP it's:
3836 ``C:\Documents and Settings\UserName\Application Data\geany``
3837 On Windows 7 and above you most likely will find it at:
3838 ``C:\users\UserName\Roaming\geany``
3843 There's a *Configuration files* submenu in the *Tools* menu that
3844 contains items for some of the available user configuration files.
3845 Clicking on one opens it in the editor for you to update. Geany will
3846 reload the file after you have saved it.
3849 Other configuration files not shown here will need to be opened
3850 manually, and will not be automatically reloaded when saved.
3851 (see *Reload Configuration* below).
3853 There's also a *Reload Configuration* item which can be used if you
3854 updated one of the other configuration files, or modified or added
3857 *Reload Configuration* is also necessary to update syntax highlighting colors.
3860 Syntax highlighting colors aren't updated in open documents after
3861 saving filetypes.common as this may take a significant
3865 Global configuration file
3866 -------------------------
3868 System administrators can add a global configuration file for Geany
3869 which will be used when starting Geany and a user configuration file
3872 The global configuration file is read from ``geany.conf`` in the
3873 system configuration path - see `Configuration file paths`_. It can
3874 contain any settings which are found in the usual configuration file
3875 created by Geany, but does not have to contain all settings.
3878 This feature is mainly intended for package maintainers or system
3879 admins who want to set up Geany in a multi user environment and
3880 set some sane default values for this environment. Usually users won't
3885 Filetype definition files
3886 -------------------------
3888 All color definitions and other filetype specific settings are
3889 stored in the filetype definition files. Those settings are colors
3890 for syntax highlighting, general settings like comment characters or
3891 word delimiter characters as well as compiler and linker settings.
3893 See also `Configuration file paths`_.
3897 Each filetype has a corresponding filetype definition file. The format
3898 for built-in filetype `Foo` is::
3902 The extension is normally just the filetype name in lower case.
3904 However there are some exceptions:
3906 =============== =========
3908 =============== =========
3912 Matlab/Octave matlab
3913 =============== =========
3915 There is also the `special file filetypes.common`_.
3917 For `custom filetypes`_, the filename for `Foo` is different::
3921 See the link for details.
3925 The system-wide filetype configuration files can be found in the
3926 system configuration path and are called ``filetypes.$ext``,
3927 where $ext is the name of the filetype. For every
3928 filetype there is a corresponding definition file. There is one
3929 exception: ``filetypes.common`` -- this file is for general settings,
3930 which are not specific to a certain filetype.
3933 It is not recommended that users edit the system-wide files,
3934 because they will be overridden when Geany is updated.
3938 To change the settings, copy a file from the system configuration
3939 path to the subdirectory ``filedefs`` in your user configuration
3940 directory. Then you can edit the file and the changes will still be
3941 available after an update of Geany.
3943 Alternatively, you can create the file yourself and add only the
3944 settings you want to change. All missing settings will be read from
3945 the corresponding system configuration file.
3949 At startup Geany looks for ``filetypes.*.conf`` files in the system and
3950 user filetype paths, adding any filetypes found with the name matching
3951 the '``*``' wildcard - e.g. ``filetypes.Bar.conf``.
3953 Custom filetypes are not as powerful as built-in filetypes, but
3954 support for the following has been implemented:
3956 * Recognizing and setting the filetype (after the user has manually updated
3957 the `filetype extensions`_ file).
3958 * `Filetype group membership`_.
3959 * Reading filetype settings in the ``[settings]`` section, including:
3960 * Using an existing syntax highlighting lexer (`lexer_filetype`_ key).
3961 * Using an existing tag parser (`tag_parser`_ key).
3962 * Build commands (``[build-menu]`` section).
3963 * Loading global tags files (sharing the ``tag_parser`` filetype's namespace).
3965 See `Filetype configuration`_ for details on each setting.
3967 Creating a custom filetype from an existing filetype
3968 ````````````````````````````````````````````````````
3969 Because most filetype settings will relate to the syntax
3970 highlighting (e.g. styling, keywords, ``lexer_properties``
3971 sections), it is best to copy an existing filetype file that uses
3972 the lexer you wish to use as the basis of a custom filetype, using
3973 the correct filename extension format shown above, e.g.::
3975 cp filetypes.foo filetypes.Bar.conf
3977 Then add the ``lexer_filetype=Foo`` setting (if not already present)
3978 and add/adjust other settings.
3981 The ``[styling]`` and ``[keywords]`` sections have key names
3982 specific to each filetype/lexer. You must follow the same
3983 names - in particular, some lexers only support one keyword
3987 Filetype configuration
3988 ^^^^^^^^^^^^^^^^^^^^^^
3990 As well as the sections listed below, each filetype file can contain
3991 a [build-menu] section as described in `[build-menu] section`_.
3996 In this section the colors for syntax highlighting are defined. The
3999 * ``key=foreground_color;background_color;bold_flag;italic_flag``
4001 Colors have to be specified as RGB hex values prefixed by
4002 0x or # similar to HTML/CSS hex triplets. For example, all of the following
4003 are valid values for pure red; 0xff0000, 0xf00, #ff0000, or #f00. The
4004 values are case-insensitive but it is a good idea to use lower-case.
4005 Note that you can also use *named colors* as well by substituting the
4006 color value with the name of a color as defined in the ``[named_colors]``
4007 section, see the `[named_colors] Section`_ for more information.
4009 Bold and italic are flags and should only be "true" or "false". If their
4010 value is something other than "true" or "false", "false" is assumed.
4012 You can omit fields to use the values from the style named ``"default"``.
4014 E.g. ``key=0xff0000;;true``
4016 This makes the key style have red foreground text, default background
4017 color text and bold emphasis.
4021 The second format uses a *named style* name to reference a style
4022 defined in filetypes.common.
4024 * ``key=named_style``
4025 * ``key2=named_style2,bold,italic``
4027 The bold and italic parts are optional, and if present are used to
4028 toggle the bold or italic flags to the opposite of the named style's
4029 flags. In contrast to style definition booleans, they are a literal
4030 ",bold,italic" and commas are used instead of semi-colons.
4032 E.g. ``key=comment,italic``
4034 This makes the key style match the ``"comment"`` named style, but with
4037 To define named styles, see the filetypes.common `[named_styles]
4040 Reading styles from another filetype
4041 ************************************
4042 You can automatically copy all of the styles from another filetype
4043 definition file by using the following syntax for the ``[styling]``
4048 Where Foo is a filetype name. The corresponding ``[styling]``
4049 section from ``filetypes.foo`` will be read.
4051 This is useful when the same lexer is being used for multiple
4052 filetypes (e.g. C/C++/C#/Java/etc). For example, to make the C++
4053 styling the same as the C styling, you would put the following in
4062 This section contains keys for different keyword lists specific to
4063 the filetype. Some filetypes do not support keywords, so adding a
4064 new key will not work. You can only add or remove keywords to/from
4068 The keywords list must be in one line without line ending characters.
4071 [lexer_properties] section
4072 ``````````````````````````
4073 Here any special properties for the Scintilla lexer can be set in the
4074 format ``key.name.field=some.value``.
4076 Properties Geany uses are listed in the system filetype files. To find
4077 other properties you need Geany's source code::
4079 egrep -o 'GetProperty\w*\("([^"]+)"[^)]+\)' scintilla/Lex*.cxx
4086 This is the default file extension used when saving files, not
4087 including the period character (``.``). The extension used should
4088 match one of the patterns associated with that filetype (see
4089 `Filetype extensions`_).
4091 *Example:* ``extension=cxx``
4094 These characters define word boundaries when making selections
4095 and searching using word matching options.
4097 *Example:* (look at system filetypes.\* files)
4100 This overrides the *whitespace_chars* filetypes.common setting.
4103 A character or string which is used to comment code. If you want to use
4104 multiline comments only, don't set this but rather comment_open and
4107 Single-line comments are used in priority over multiline comments to
4108 comment a line, e.g. with the `Comment/Uncomment line` command.
4110 *Example:* ``comment_single=//``
4113 A character or string which is used to comment code. You need to also
4114 set comment_close to really use multiline comments. If you want to use
4115 single-line comments, prefer setting comment_single.
4117 Multiline comments are used in priority over single-line comments to
4118 comment a block, e.g. template comments.
4120 *Example:* ``comment_open=/*``
4123 If multiline comments are used, this is the character or string to
4126 *Example:* ``comment_close=*/``
4129 Set this to false if a comment character or string should start at
4130 column 0 of a line. If set to true it uses any indentation of the
4133 Note: Comment indentation
4135 ``comment_use_indent=true`` would generate this if a line is
4136 commented (e.g. with Ctrl-D)::
4140 ``comment_use_indent=false`` would generate this if a line is
4141 commented (e.g. with Ctrl-D)::
4143 # command_example();
4146 Note: This setting only works for single line comments (like '//',
4149 *Example:* ``comment_use_indent=true``
4152 A command which can be executed on the current word or the current
4155 Example usage: Open the API documentation for the
4156 current function call at the cursor position.
4159 be set for every filetype or if not set, a global command will
4160 be used. The command itself can be specified without the full
4161 path, then it is searched in $PATH. But for security reasons,
4162 it is recommended to specify the full path to the command. The
4163 wildcard %s will be replaced by the current word at the cursor
4164 position or by the current selection.
4166 Hint: for PHP files the following could be quite useful:
4167 context_action_cmd=firefox "http://www.php.net/%s"
4169 *Example:* ``context_action_cmd=devhelp -s "%s"``
4174 The TagManager language name, e.g. "C". Usually the same as the
4180 A filetype name to setup syntax highlighting from another filetype.
4181 This must not be recursive, i.e. it should be a filetype name that
4182 doesn't use the *lexer_filetype* key itself, e.g.::
4187 The second line is wrong, because ``filetypes.cpp`` itself uses
4188 ``lexer_filetype=C``, which would be recursive.
4190 symbol_list_sort_mode
4191 What the default symbol list sort order should be.
4193 ===== =====================================
4195 ===== =====================================
4197 1 Sort tags by appearance (line number)
4198 ===== =====================================
4200 .. _xml_indent_tags:
4203 If this setting is set to *true*, a new line after a line ending with an
4204 unclosed XML/HTML tag will be automatically indented. This only applies
4205 to filetypes for which the HTML or XML lexer is used. Such filetypes have
4206 this setting in their system configuration files.
4209 [indentation] section
4210 `````````````````````
4212 This section allows definition of default indentation settings specific to
4213 the file type, overriding the ones configured in the preferences. This can
4214 be useful for file types requiring specific indentation settings (e.g. tabs
4215 only for Makefile). These settings don't override auto-detection if activated.
4218 The forced indentation width.
4221 The forced indentation type.
4223 ===== =======================
4224 Value Indentation type
4225 ===== =======================
4228 2 Mixed (tabs and spaces)
4229 ===== =======================
4232 [build_settings] section
4233 ````````````````````````
4235 As of Geany 0.19 this section is supplemented by the `[build-menu] section`_.
4236 Values that are set in the [build-menu] section will override those in this section.
4239 This is a regular expression to parse a filename
4240 and line number from build output. If undefined, Geany will fall
4241 back to its default error message parsing.
4243 Only the first two matches will be read by Geany. Geany will look for
4244 a match that is purely digits, and use this for the line number. The
4245 remaining match will be used as the filename.
4247 *Example:* ``error_regex=(.+):([0-9]+):[0-9]+``
4249 This will parse a message such as:
4250 ``test.py:7:24: E202 whitespace before ']'``
4254 If any build menu item settings have been configured in the Build Menu Commands
4255 dialog or the Build tab of the project preferences dialog then these
4256 settings are stored in the [build-menu] section and override the settings in
4257 this section for that item.
4260 This item specifies the command to compile source code files. But
4261 it is also possible to use it with interpreted languages like Perl
4262 or Python. With these filetypes you can use this option as a kind of
4263 syntax parser, which sends output to the compiler message window.
4265 You should quote the filename to also support filenames with
4266 spaces. The following wildcards for filenames are available:
4268 * %f -- complete filename without path
4269 * %e -- filename without path and without extension
4271 *Example:* ``compiler=gcc -Wall -c "%f"``
4274 This item specifies the command to link the file. If the file is not
4275 already compiled, it will be compiled while linking. The -o option
4276 is automatically added by Geany. This item works well with GNU gcc,
4277 but may be problematic with other compilers (esp. with the linker).
4279 *Example:* ``linker=gcc -Wall "%f"``
4282 Use this item to execute your file. It has to have been built
4283 already. Use the %e wildcard to have only the name of the executable
4284 (i.e. without extension) or use the %f wildcard if you need the
4285 complete filename, e.g. for shell scripts.
4287 *Example:* ``run_cmd="./%e"``
4290 Special file filetypes.common
4291 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4293 There is a special filetype definition file called
4294 filetypes.common. This file defines some general non-filetype-specific
4297 You can open the user filetypes.common with the
4298 *Tools->Configuration Files->filetypes.common* menu item. This adds
4299 the default settings to the user file if the file doesn't exist.
4300 Alternatively the file can be created manually, adding only the
4301 settings you want to change. All missing settings will be read from
4305 See the `Filetype configuration`_ section for how to define styles.
4308 [named_styles] section
4309 ``````````````````````
4310 Named styles declared here can be used in the [styling] section of any
4315 *In filetypes.common*::
4318 foo=0xc00000;0xffffff;false;true
4326 This saves copying and pasting the whole style definition into several
4330 You can define aliases for named styles, as shown with the ``bar``
4331 entry in the above example, but they must be declared after the
4335 [named_colors] section
4336 ``````````````````````
4337 Named colors declared here can be used in the ``[styling]`` or
4338 ``[named_styles]`` section of any filetypes.* file or color scheme.
4343 my_red_color=#FF0000
4344 my_blue_color=#0000FF
4347 foo=my_red_color;my_blue_color;false;true
4349 This allows to define a color pallete by name so that to change a color
4350 scheme-wide only involves changing the hex value in a single location.
4355 This is the default style. It is used for styling files without a
4358 *Example:* ``default=0x000000;0xffffff;false;false``
4361 The style for coloring selected text. The format is:
4365 * Use foreground color
4366 * Use background color
4368 The colors are only set if the 3rd or 4th argument is true. When
4369 the colors are not overridden, the default is a dark grey
4370 background with syntax highlighted foreground text.
4372 *Example:* ``selection=0xc0c0c0;0x00007F;true;true``
4375 The style for brace highlighting when a matching brace was found.
4377 *Example:* ``brace_good=0xff0000;0xFFFFFF;true;false``
4380 The style for brace highlighting when no matching brace was found.
4382 *Example:* ``brace_bad=0x0000ff;0xFFFFFF;true;false``
4385 The style for coloring the caret(the blinking cursor). Only first
4386 and third argument is interpreted.
4387 Set the third argument to true to change the caret into a block caret.
4389 *Example:* ``caret=0x000000;0x0;false;false``
4392 The width for the caret(the blinking cursor). Only the first
4393 argument is interpreted. The width is specified in pixels with
4394 a maximum of three pixel. Use the width 0 to make the caret
4397 *Example:* ``caret=1;0;false;false``
4400 The style for coloring the background of the current line. Only
4401 the second and third arguments are interpreted. The second argument
4402 is the background color. Use the third argument to enable or
4403 disable background highlighting for the current line (has to be
4406 *Example:* ``current_line=0x0;0xe5e5e5;true;false``
4409 The style for coloring the indentation guides. Only the first and
4410 second arguments are interpreted.
4412 *Example:* ``indent_guide=0xc0c0c0;0xffffff;false;false``
4415 The style for coloring the white space if it is shown. The first
4416 both arguments define the foreground and background colors, the
4417 third argument sets whether to use the defined foreground color
4418 or to use the color defined by each filetype for the white space.
4419 The fourth argument defines whether to use the background color.
4421 *Example:* ``white_space=0xc0c0c0;0xffffff;true;true``
4424 Line number margin foreground and background colors.
4426 .. _Folding Settings:
4429 Fold margin foreground and background colors.
4431 fold_symbol_highlight
4432 Highlight color of folding symbols.
4435 The style of folding icons. Only first and second arguments are
4438 Valid values for the first argument are:
4445 Valid values for the second argument are:
4448 * 1 -- for straight lines
4449 * 2 -- for curved lines
4451 *Default:* ``folding_style=1;1;``
4453 *Arrows:* ``folding_style=3;0;``
4456 Draw a thin horizontal line at the line where text is folded. Only
4457 first argument is used.
4459 Valid values for the first argument are:
4461 * 0 -- disable, do not draw a line
4462 * 1 -- draw the line above folded text
4463 * 2 -- draw the line below folded text
4465 *Example:* ``folding_horiz_line=0;0;false;false``
4468 First argument: drawing of visual flags to indicate a line is wrapped.
4469 This is a bitmask of the values:
4471 * 0 -- No visual flags
4472 * 1 -- Visual flag at end of subline of a wrapped line
4473 * 2 -- Visual flag at begin of subline of a wrapped line. Subline is
4474 indented by at least 1 to make room for the flag.
4476 Second argument: wether the visual flags to indicate a line is wrapped
4477 are drawn near the border or near the text. This is a bitmask of the values:
4479 * 0 -- Visual flags drawn near border
4480 * 1 -- Visual flag at end of subline drawn near text
4481 * 2 -- Visual flag at begin of subline drawn near text
4483 Only first and second arguments are interpreted.
4485 *Example:* ``line_wrap_visuals=3;0;false;false``
4488 First argument: sets the size of indentation of sublines for wrapped lines
4489 in terms of the width of a space, only used when the second argument is ``0``.
4491 Second argument: wrapped sublines can be indented to the position of their
4492 first subline or one more indent level. Possible values:
4494 * 0 - Wrapped sublines aligned to left of window plus amount set by the first argument
4495 * 1 - Wrapped sublines are aligned to first subline indent (use the same indentation)
4496 * 2 - Wrapped sublines are aligned to first subline indent plus one more level of indentation
4498 Only first and second arguments are interpreted.
4500 *Example:* ``line_wrap_indent=0;1;false;false``
4503 Translucency for the current line (first argument) and the selection
4504 (second argument). Values between 0 and 256 are accepted.
4506 Note for Windows 95, 98 and ME users:
4507 keep this value at 256 to disable translucency otherwise Geany might crash.
4509 Only the first and second arguments are interpreted.
4511 *Example:* ``translucency=256;256;false;false``
4514 The style for a highlighted line (e.g when using Goto line or goto tag).
4515 The foreground color (first argument) is only used when the Markers margin
4516 is enabled (see View menu).
4518 Only the first and second arguments are interpreted.
4520 *Example:* ``marker_line=0x000000;0xffff00;false;false``
4523 The style for a marked search results (when using "Mark" in Search dialogs).
4524 The second argument sets the background color for the drawn rectangle.
4526 Only the second argument is interpreted.
4528 *Example:* ``marker_search=0x000000;0xb8f4b8;false;false``
4531 The style for a marked line (e.g when using the "Toggle Marker" keybinding
4532 (Ctrl-M)). The foreground color (first argument) is only used
4533 when the Markers margin is enabled (see View menu).
4535 Only the first and second arguments are interpreted.
4537 *Example:* ``marker_mark=0x000000;0xb8f4b8;false;false``
4540 Translucency for the line marker (first argument) and the search marker
4541 (second argument). Values between 0 and 256 are accepted.
4543 Note for Windows 95, 98 and ME users:
4544 keep this value at 256 to disable translucency otherwise Geany might crash.
4546 Only the first and second arguments are interpreted.
4548 *Example:* ``marker_translucency=256;256;false;false``
4551 Amount of space to be drawn above and below the line's baseline.
4552 The first argument defines the amount of space to be drawn above the line, the second
4553 argument defines the amount of space to be drawn below.
4555 Only the first and second arguments are interpreted.
4557 *Example:* ``line_height=0;0;false;false``
4560 The style for coloring the calltips. The first two arguments
4561 define the foreground and background colors, the third and fourth
4562 arguments set whether to use the defined colors.
4564 *Example:* ``calltips=0xc0c0c0;0xffffff;false;false``
4570 Characters to treat as whitespace. These characters are ignored
4571 when moving, selecting and deleting across word boundaries
4572 (see `Scintilla keyboard commands`_).
4574 This should include space (\\s) and tab (\\t).
4576 *Example:* ``whitespace_chars=\s\t!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~``
4584 To change the default filetype extension used when saving a new file,
4585 see `Filetype definition files`_.
4587 You can override the list of file extensions that Geany uses to detect
4588 filetypes using the user ``filetype_extensions.conf`` file. Use the
4589 *Tools->Configuration Files->filetype_extensions.conf* menu item. See
4590 also `Configuration file paths`_.
4592 You should only list lines for filetype extensions that you want to
4593 override in the user configuration file and remove or comment out
4594 others. The patterns are listed after the ``=`` sign, using a
4595 semi-colon separated list of patterns which should be matched for
4598 For example, to override the filetype extensions for Make, the file
4602 Make=Makefile*;*.mk;Buildfile;
4604 Filetype group membership
4605 ^^^^^^^^^^^^^^^^^^^^^^^^^
4606 Group membership is also stored in ``filetype_extensions.conf``. This
4607 file is used to store information Geany needs at startup, whereas the
4608 separate filetype definition files hold information only needed when
4609 a document with their filetype is used.
4611 The format looks like::
4620 The key names cannot be configured.
4623 Group membership is only read at startup.
4625 Preferences file format
4626 -----------------------
4628 The user preferences file ``geany.conf`` holds settings for all the items configured
4629 in the preferences dialog. This file should not be edited while Geany is running
4630 as the file will be overwritten when the preferences in Geany are changed or Geany
4634 [build-menu] section
4635 ^^^^^^^^^^^^^^^^^^^^
4637 The [build-menu] section contains the configuration of the build menu.
4638 This section can occur in filetype, preferences and project files and
4639 always has the format described here. Different menu items are loaded
4640 from different files, see the table in the `Build Menu Configuration`_
4641 section for details. All the settings can be configured from the dialogs
4642 except the execute command in filetype files and filetype definitions in
4643 the project file, so these are the only ones which need hand editing.
4645 The build-menu section stores one entry for each setting for each menu item that
4646 is configured. The keys for these settings have the format:
4652 * GG - is the menu item group,
4655 - NF for independent (non-filetype)
4658 * NN - is a two decimal digit number of the item within the group,
4660 * FF - is the field,
4664 - WD for working directory
4670 The project file contains project related settings and possibly a
4671 record of the current session files.
4674 [build-menu] additions
4675 ^^^^^^^^^^^^^^^^^^^^^^
4677 The project file also can have extra fields in the [build-menu] section
4678 in addition to those listed in `[build-menu] section`_ above.
4680 When filetype menu items are configured for the project they are stored
4681 in the project file.
4683 The ``filetypes`` entry is a list of the filetypes which exist in the
4686 For each filetype the entries for that filetype have the format defined in
4687 `[build-menu] section`_ but the key is prefixed by the name of the filetype
4688 as it appears in the ``filetypes`` entry, eg the entry for the label of
4689 filetype menu item 0 for the C filetype would be
4697 Geany supports the following templates:
4701 * Function description
4706 To use these templates, just open the Edit menu or open the popup menu
4707 by right-clicking in the editor widget, and choose "Insert Comments"
4708 and insert templates as you want.
4710 Some templates (like File header or ChangeLog entry) will always be
4711 inserted at the top of the file.
4713 To insert a function description, the cursor must be inside
4714 of the function, so that the function name can be determined
4715 automatically. The description will be positioned correctly one line
4716 above the function, just check it out. If the cursor is not inside
4717 of a function or the function name cannot be determined, the inserted
4718 function description won't contain the correct function name but "unknown"
4722 Geany automatically reloads template information when it notices you
4723 save a file in the user's template configuration directory. You can
4724 also force this by selecting *Tools->Reload Configuration*.
4730 Meta data can be used with all templates, but by default user set
4731 meta data is only used for the ChangeLog and File header templates.
4733 In the configuration dialog you can find a tab "Templates" (see
4734 `Template preferences`_). You can define the default values
4735 which will be inserted in the templates.
4741 File templates are templates used as the basis of a new file. To
4742 use them, choose the *New (with Template)* menu item from the *File*
4745 By default, file templates are installed for some filetypes. Custom
4746 file templates can be added by creating the appropriate template file. You can
4747 also edit the default file templates.
4749 The file's contents are just the text to place in the document, with
4750 optional template wildcards like ``{fileheader}``. The fileheader
4751 wildcard can be placed anywhere, but it's usually put on the first
4752 line of the file, followed by a blank line.
4754 Adding file templates
4755 `````````````````````
4757 File templates are read from ``templates/files`` under the
4758 `Configuration file paths`_.
4760 The filetype to use is detected from the template file's extension, if
4761 any. For example, creating a file ``module.c`` would add a menu item
4762 which created a new document with the filetype set to 'C'.
4764 The template file is read from disk when the corresponding menu item is
4768 Customizing templates
4769 ^^^^^^^^^^^^^^^^^^^^^
4771 Each template can be customized to your needs. The templates are
4772 stored in the ``~/.config/geany/templates/`` directory (see the section called
4773 `Command line options`_ for further information about the configuration
4774 directory). Just open the desired template with an editor (ideally,
4775 Geany ;-) ) and edit the template to your needs. There are some
4776 wildcards which will be automatically replaced by Geany at startup.
4782 All wildcards must be enclosed by "{" and "}", e.g. {date}.
4784 **Wildcards for character escaping**
4786 ============== ============================================= =======================================
4787 Wildcard Description Available in
4788 ============== ============================================= =======================================
4789 ob { Opening Brace (used to prevent other file templates, file header, snippets.
4790 wildcards being expanded).
4791 cb } Closing Brace. file templates, file header, snippets.
4792 pc \% Percent (used to escape e.g. %block% in
4793 snippets). snippets.
4794 ============== ============================================= =======================================
4796 **Global wildcards**
4798 These are configurable, see `Template preferences`_.
4800 ============== ============================================= =======================================
4801 Wildcard Description Available in
4802 ============== ============================================= =======================================
4803 developer The name of the developer. file templates, file header,
4804 function description, ChangeLog entry,
4807 initial The developer's initials, e.g. "ET" for file templates, file header,
4808 Enrico Tröger or "JFD" for John Foobar Doe. function description, ChangeLog entry,
4811 mail The email address of the developer. file templates, file header,
4812 function description, ChangeLog entry,
4815 company The company the developer is working for. file templates, file header,
4816 function description, ChangeLog entry,
4819 version The initial version of a new file. file templates, file header,
4820 function description, ChangeLog entry,
4822 ============== ============================================= =======================================
4824 **Date & time wildcards**
4826 The format for these wildcards can be changed in the preferences
4827 dialog, see `Template preferences`_. You can use any conversion
4828 specifiers which can be used with the ANSI C strftime function.
4829 For details please see http://man.cx/strftime.
4831 ============== ============================================= =======================================
4832 Wildcard Description Available in
4833 ============== ============================================= =======================================
4834 year The current year. Default format is: YYYY. file templates, file header,
4835 function description, ChangeLog entry,
4838 date The current date. Default format: file templates, file header,
4839 YYYY-MM-DD. function description, ChangeLog entry,
4842 datetime The current date and time. Default format: file templates, file header,
4843 DD.MM.YYYY HH:mm:ss ZZZZ. function description, ChangeLog entry,
4845 ============== ============================================= =======================================
4847 **Dynamic wildcards**
4849 ============== ============================================= =======================================
4850 Wildcard Description Available in
4851 ============== ============================================= =======================================
4852 untitled The string "untitled" (this will be file templates, file header,
4853 translated to your locale), used in function description, ChangeLog entry,
4854 file templates. bsd, gpl, snippets.
4856 geanyversion The actual Geany version, e.g. file templates, file header,
4857 "Geany |(version)|". function description, ChangeLog entry,
4860 filename The filename of the current file. file header, snippets, file
4861 For new files, it's only replaced when templates.
4862 first saving if found on the first 4 lines
4865 project The current project's name, if any. file header, snippets, file templates.
4867 description The current project's description, if any. file header, snippets, file templates.
4869 functionname The function name of the function at the function description.
4870 cursor position. This wildcard will only be
4871 replaced in the function description
4874 command:path Executes the specified command and replace file templates, file header,
4875 the wildcard with the command's standard function description, ChangeLog entry,
4876 output. See `Special {command:} wildcard`_ bsd, gpl, snippets.
4878 ============== ============================================= =======================================
4880 **Template insertion wildcards**
4882 ============== ============================================= =======================================
4883 Wildcard Description Available in
4884 ============== ============================================= =======================================
4885 gpl This wildcard inserts a short GPL notice. file header.
4887 bsd This wildcard inserts a BSD licence notice. file header.
4889 fileheader The file header template. This wildcard snippets, file templates.
4890 will only be replaced in file templates.
4891 ============== ============================================= =======================================
4894 Special {command:} wildcard
4895 ***************************
4897 The {command:} wildcard is a special one because it can execute
4898 a specified command and put the command's output (stdout) into
4907 Linux localhost 2.6.9-023stab046.2-smp #1 SMP Mon Dec 10 15:04:55 MSK 2007 x86_64 GNU/Linux
4909 Using this wildcard you can insert nearly any arbitrary text into the
4912 In the environment of the executed command the variables
4913 ``GEANY_FILENAME``, ``GEANY_FILETYPE`` and ``GEANY_FUNCNAME`` are set.
4914 The value of these variables is filled in only if Geany knows about it.
4915 For example, ``GEANY_FUNCNAME`` is only filled within the function
4916 description template. However, these variables are ``always`` set,
4917 just maybe with an empty value.
4918 You can easily access them e.g. within an executed shell script using::
4924 If the specified command could not be found or not executed, the wildcard is substituted
4925 by an empty string. In such cases, you can find the occurred error message on Geany's
4926 standard error and in the Help->Debug Messages dialog.
4929 Customizing the toolbar
4930 -----------------------
4932 You can add, remove and reorder the elements in the toolbar by using
4933 the toolbar editor, or by manually editing the configuration file
4936 The toolbar editor can be opened from the preferences editor on the Toolbar tab or
4937 by right-clicking on the toolbar itself and choosing it from the menu.
4939 Manually editing the toolbar layout
4940 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4942 To override the system-wide configuration file, copy it to your user
4943 configuration directory (see `Configuration file paths`_).
4947 % cp /usr/local/share/geany/ui_toolbar.xml /home/username/.config/geany/
4949 Then edit it and add any of the available elements listed in the file or remove
4950 any of the existing elements. Of course, you can also reorder the elements as
4951 you wish and add or remove additional separators.
4952 This file must be valid XML, otherwise the global toolbar UI definition
4953 will be used instead.
4955 Your changes are applied once you save the file.
4958 (1) You cannot add new actions which are not listed below.
4959 (2) Everything you add or change must be inside the /ui/toolbar/ path.
4962 Available toolbar elements
4963 ^^^^^^^^^^^^^^^^^^^^^^^^^^
4965 ================== ==============================================================================
4966 Element name Description
4967 ================== ==============================================================================
4968 New Create a new file
4969 Open Open an existing file
4970 Save Save the current file
4971 SaveAll Save all open files
4972 Reload Reload the current file from disk
4973 Close Close the current file
4974 CloseAll Close all open files
4975 Print Print the current file
4976 Cut Cut the current selection
4977 Copy Copy the current selection
4978 Paste Paste the contents of the clipboard
4979 Delete Delete the current selection
4980 Undo Undo the last modification
4981 Redo Redo the last modification
4982 NavBack Navigate back a location
4983 NavFor Navigate forward a location
4984 Compile Compile the current file
4985 Build Build the current file, includes a submenu for Make commands. Geany
4986 remembers the last chosen action from the submenu and uses this as default
4987 action when the button itself is clicked.
4988 Run Run or view the current file
4989 Color Open a color chooser dialog, to interactively pick colors from a palette
4990 ZoomIn Zoom in the text
4991 ZoomOut Zoom out the text
4992 UnIndent Decrease indentation
4993 Indent Increase indentation
4994 Replace Replace text in the current document
4995 SearchEntry The search field belonging to the 'Search' element (can be used alone)
4996 Search Find the entered text in the current file (only useful if you also
4998 GotoEntry The goto field belonging to the 'Goto' element (can be used alone)
4999 Goto Jump to the entered line number (only useful if you also use 'GotoEntry')
5000 Preferences Show the preferences dialog
5002 ================== ==============================================================================
5006 Plugin documentation
5007 ====================
5012 The HTML Characters plugin helps when working with special
5013 characters in XML/HTML, e.g. German Umlauts ü and ä.
5016 Insert entity dialog
5017 ^^^^^^^^^^^^^^^^^^^^
5019 When the plugin is enabled, you can insert special character
5020 entities using *Tools->Insert Special HTML Characters*.
5022 This opens up a dialog where you can find a huge amount of special
5023 characters sorted by category that you might like to use inside your
5024 document. You can expand and collapse the categories by clicking on
5025 the little arrow on the left hand side. Once you have found the
5026 desired character click on it and choose "Insert". This will insert
5027 the entity for the character at the current cursor position. You
5028 might also like to double click the chosen entity instead.
5031 Replace special chars by its entity
5032 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5034 To help make a XML/HTML document valid the plugin supports
5035 replacement of special chars known by the plugin. Both bulk
5036 replacement and immediate replacement during typing are supported.
5038 A few characters will not be replaced. These are
5049 You can activate/deactivate this feature using the *Tools->HTML
5050 Replacement->Auto-replace Special Characters* menu item. If it's
5051 activated, all special characters (beside the given exceptions from
5052 above) known by the plugin will be replaced by their entities.
5054 You could also set a keybinding for the plugin to toggle the status
5061 After inserting a huge amount of text, e.g. by using copy & paste, the
5062 plugin allows bulk replacement of all known characters (beside the
5063 mentioned exceptions). You can find the function under the same
5064 menu at *Tools->HTML Replacement->Replace Characters in Selection*, or
5065 configure a keybinding for the plugin.
5074 This plugin provides an option to automatically save documents.
5075 You can choose to save the current document, or all of your documents, at
5082 You can save the current document when the editor's focus goes out.
5083 Every pop-up, menu dialogs, or anything else that can make the editor lose the focus,
5084 will make the current document to be saved.
5089 This plugin sets on every new file (*File->New* or *File->New (with template)*)
5090 a randomly chosen filename and set its filetype appropriate to the used template
5091 or when no template was used, to a configurable default filetype.
5092 This enables you to quickly compile, build and/or run the new file without the
5093 need to give it an explicit filename using the Save As dialog. This might be
5094 useful when you often create new files just for testing some code or something
5101 This plugin creates a backup copy of the current file in Geany when it is
5102 saved. You can specify the directory where the backup copy is saved and
5103 you can configure the automatically added extension in the configure dialog
5104 in Geany's plugin manager.
5106 After the plugin was loaded in Geany's plugin manager, every file is
5107 copied into the configured backup directory when the file is saved in Geany.
5111 Contributing to this document
5112 =============================
5114 This document (``geany.txt``) is written in `reStructuredText`__
5115 (or "reST"). The source file for it is located in Geany's ``doc``
5116 subdirectory. If you intend on making changes, you should grab the
5117 source right from Git to make sure you've got the newest version. After
5118 editing the file, to build the HTML document to see how your changes
5119 look, run "``make doc``" in the subdirectory ``doc`` of Geany's source
5120 directory. This regenerates the ``geany.html`` file. To generate a PDF
5121 file, use the command "``make pdf``" which should generate a file called
5122 geany-|(version)|.pdf.
5124 __ http://docutils.sourceforge.net/rst.html
5126 After you are happy with your changes, create a patch e.g. by using::
5128 % git diff geany.txt > foo.patch
5130 or even better, by creating a Git-formatted patch which will keep authoring
5131 and description data, by first committing your changes (doing so in a fresh
5132 new branch is recommended for `matser` not to diverge from upstream) and then
5133 using git format-patch::
5135 % git checkout -b my-documentation-changes # create a fresh branch
5136 % git commit geany.txt
5137 Write a good commit message...
5138 % git format-patch HEAD^
5139 % git checkout master # go back to master
5141 and then submit that file to the mailing list for review.
5143 Also you can clone the Geany repository at GitHub and send a pull request.
5145 Note, you will need the Python docutils software package installed
5146 to build the docs. The package is named ``python-docutils`` on Debian
5152 Scintilla keyboard commands
5153 ===========================
5155 Copyright © 1998, 2006 Neil Hodgson <neilh(at)scintilla(dot)org>
5157 This appendix is distributed under the terms of the License for
5158 Scintilla and SciTE. A copy of this license can be found in the file
5159 ``scintilla/License.txt`` included with the source code of this
5160 program and in the appendix of this document. See `License for
5161 Scintilla and SciTE`_.
5170 Keyboard commands for Scintilla mostly follow common Windows and GTK+
5171 conventions. All move keys (arrows, page up/down, home and end)
5172 allows to extend or reduce the stream selection when holding the
5173 Shift key, and the rectangular selection when holding the
5174 appropriate keys (see `Column mode editing (rectangular selections)`_).
5176 Some keys may not be available with some national keyboards
5177 or because they are taken by the system such as by a window manager
5178 or GTK. Keyboard equivalents of menu commands are listed in the
5179 menus. Some less common commands with no menu equivalent are:
5181 ============================================= ======================
5183 ============================================= ======================
5184 Magnify text size. Ctrl-Keypad+
5185 Reduce text size. Ctrl-Keypad-
5186 Restore text size to normal. Ctrl-Keypad/
5188 Dedent block. Shift-Tab
5189 Delete to start of word. Ctrl-BackSpace
5190 Delete to end of word. Ctrl-Delete
5191 Delete to start of line. Ctrl-Shift-BackSpace
5192 Go to start of document. Ctrl-Home
5193 Extend selection to start of document. Ctrl-Shift-Home
5194 Go to start of display line. Alt-Home
5195 Extend selection to start of display line. Alt-Shift-Home
5196 Go to end of document. Ctrl-End
5197 Extend selection to end of document. Ctrl-Shift-End
5198 Extend selection to end of display line. Alt-Shift-End
5199 Previous paragraph. Shift extends selection. Ctrl-Up
5200 Next paragraph. Shift extends selection. Ctrl-Down
5201 Previous word. Shift extends selection. Ctrl-Left
5202 Next word. Shift extends selection. Ctrl-Right
5203 ============================================= ======================
5214 * Double-click on empty space in the notebook tab bar to open a
5216 * Middle-click on a document's notebook tab to close the document.
5217 * Hold `Ctrl` and click on any notebook tab to switch to the last used
5219 * Double-click on a document's notebook tab to toggle all additional
5220 widgets (to show them again use the View menu or the keyboard
5221 shortcut). The interface pref must be enabled for this to work.
5226 * Alt-scroll wheel moves up/down a page.
5227 * Ctrl-scroll wheel zooms in/out.
5228 * Shift-scroll wheel scrolls 8 characters right/left.
5229 * Ctrl-click on a word in a document to perform *Go to Tag Definition*.
5230 * Ctrl-click on a bracket/brace to perform *Go to Matching Brace*.
5235 * Double-click on a symbol-list group to expand or compact it.
5240 * Scrolling the mouse wheel over a notebook tab bar will switch
5243 The following are derived from X-Windows features (but GTK still supports
5246 * Middle-click pastes the last selected text.
5247 * Middle-click on a scrollbar moves the scrollbar to that
5248 position without having to drag it.
5252 Compile-time options
5253 ====================
5255 There are some options which can only be changed at compile time,
5256 and some options which are used as the default for configurable
5257 options. To change these options, edit the appropriate source file
5258 in the ``src`` subdirectory. Look for a block of lines starting with
5259 ``#define GEANY_*``. Any definitions which are not listed here should
5263 Most users should not need to change these options.
5268 ============================== ============================================ ==================
5269 Option Description Default
5270 ============================== ============================================ ==================
5271 GEANY_STRING_UNTITLED A string used as the default name for new untitled
5272 files. Be aware that the string can be
5273 translated, so change it only if you know
5275 GEANY_WINDOW_MINIMAL_WIDTH The minimal width of the main window. 620
5276 GEANY_WINDOW_MINIMAL_HEIGHT The minimal height of the main window. 440
5277 GEANY_WINDOW_DEFAULT_WIDTH The default width of the main window at the 900
5279 GEANY_WINDOW_DEFAULT_HEIGHT The default height of the main window at the 600
5281 **Windows specific**
5282 GEANY_USE_WIN32_DIALOG Set this to 1 if you want to use the default 0
5283 Windows file open and save dialogs instead
5284 GTK's file open and save dialogs. The
5285 default Windows file dialogs are missing
5286 some nice features like choosing a filetype
5287 or an encoding. *Do not touch this setting
5288 when building on a non-Win32 system.*
5289 ============================== ============================================ ==================
5294 ============================== ============================================ ==================
5295 Option Description Default
5296 ============================== ============================================ ==================
5297 GEANY_PROJECT_EXT The default filename extension for Geany geany
5298 project files. It is used when creating new
5299 projects and as filter mask for the project
5301 ============================== ============================================ ==================
5306 ============================== ============================================ ==================
5307 Option Description Default
5308 ============================== ============================================ ==================
5309 GEANY_FILETYPE_SEARCH_LINES The number of lines to search for the 2
5310 filetype with the extract filetype regex.
5311 ============================== ============================================ ==================
5316 ============================== ============================================ ==================
5317 Option Description Default
5318 ============================== ============================================ ==================
5319 GEANY_WORDCHARS These characters define word boundaries when a string with:
5320 making selections and searching using word a-z, A-Z, 0-9 and
5321 matching options. underscore.
5322 ============================== ============================================ ==================
5327 These are default settings that can be overridden in the `Preferences`_ dialog.
5329 ============================== ============================================ ==================
5330 Option Description Default
5331 ============================== ============================================ ==================
5332 GEANY_MIN_SYMBOLLIST_CHARS How many characters you need to type to 4
5333 trigger the autocompletion list.
5334 GEANY_DISK_CHECK_TIMEOUT Time in seconds between checking a file for 30
5336 GEANY_DEFAULT_TOOLS_MAKE The make tool. This can also include a path. "make"
5337 GEANY_DEFAULT_TOOLS_TERMINAL A terminal emulator command, see See below.
5338 `Terminal emulators`_.
5339 GEANY_DEFAULT_TOOLS_BROWSER A web browser. This can also include a path. "firefox"
5340 GEANY_DEFAULT_TOOLS_PRINTCMD A printing tool. It should be able to accept "lpr"
5341 and process plain text files. This can also
5343 GEANY_DEFAULT_TOOLS_GREP A grep tool. It should be compatible with "grep"
5344 GNU grep. This can also include a path.
5345 GEANY_DEFAULT_MRU_LENGTH The length of the "Recent files" list. 10
5346 GEANY_DEFAULT_FONT_SYMBOL_LIST The font used in sidebar to show symbols and "Sans 9"
5348 GEANY_DEFAULT_FONT_MSG_WINDOW The font used in the messages window. "Sans 9"
5349 GEANY_DEFAULT_FONT_EDITOR The font used in the editor window. "Monospace 10"
5350 GEANY_TOGGLE_MARK A string which is used to mark a toggled "~ "
5352 GEANY_MAX_AUTOCOMPLETE_WORDS How many autocompletion suggestions should 30
5354 GEANY_DEFAULT_FILETYPE_REGEX The default regex to extract filetypes from See below.
5356 ============================== ============================================ ==================
5358 The GEANY_DEFAULT_FILETYPE_REGEX default value is -\\*-\\s*([^\\s]+)\\s*-\\*- which finds Emacs filetypes.
5360 The GEANY_DEFAULT_TOOLS_TERMINAL default value on Windows is::
5364 and on any non-Windows system is::
5366 xterm -e "/bin/sh %c"
5372 ============================== ============================================ ==================
5373 Option Description Default
5374 ============================== ============================================ ==================
5375 GEANY_BUILD_ERR_HIGHLIGHT_MAX Amount of build error indicators to 50
5376 be shown in the editor window.
5377 This affects the special coloring
5378 when Geany detects a compiler output line as
5379 an error message and then highlights the
5380 corresponding line in the source code.
5381 Usually only the first few messages are
5382 interesting because following errors are
5384 All errors in the Compiler window are parsed
5385 and unaffected by this value.
5386 PRINTBUILDCMDS Every time a build menu item priority FALSE
5387 calculation is run, print the state of the
5388 menu item table in the form of the table
5389 in `Build Menu Configuration`_. May be
5390 useful to debug configuration file
5391 overloading. Warning produces a lot of
5392 output. Can also be enabled/disabled by the
5393 debugger by setting printbuildcmds to 1/0
5394 overriding the compile setting.
5395 ============================== ============================================ ==================
5399 GNU General Public License
5400 ==========================
5404 GNU GENERAL PUBLIC LICENSE
5405 Version 2, June 1991
5407 Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5408 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
5409 Everyone is permitted to copy and distribute verbatim copies
5410 of this license document, but changing it is not allowed.
5414 The licenses for most software are designed to take away your
5415 freedom to share and change it. By contrast, the GNU General Public
5416 License is intended to guarantee your freedom to share and change free
5417 software--to make sure the software is free for all its users. This
5418 General Public License applies to most of the Free Software
5419 Foundation's software and to any other program whose authors commit to
5420 using it. (Some other Free Software Foundation software is covered by
5421 the GNU Library General Public License instead.) You can apply it to
5424 When we speak of free software, we are referring to freedom, not
5425 price. Our General Public Licenses are designed to make sure that you
5426 have the freedom to distribute copies of free software (and charge for
5427 this service if you wish), that you receive source code or can get it
5428 if you want it, that you can change the software or use pieces of it
5429 in new free programs; and that you know you can do these things.
5431 To protect your rights, we need to make restrictions that forbid
5432 anyone to deny you these rights or to ask you to surrender the rights.
5433 These restrictions translate to certain responsibilities for you if you
5434 distribute copies of the software, or if you modify it.
5436 For example, if you distribute copies of such a program, whether
5437 gratis or for a fee, you must give the recipients all the rights that
5438 you have. You must make sure that they, too, receive or can get the
5439 source code. And you must show them these terms so they know their
5442 We protect your rights with two steps: (1) copyright the software, and
5443 (2) offer you this license which gives you legal permission to copy,
5444 distribute and/or modify the software.
5446 Also, for each author's protection and ours, we want to make certain
5447 that everyone understands that there is no warranty for this free
5448 software. If the software is modified by someone else and passed on, we
5449 want its recipients to know that what they have is not the original, so
5450 that any problems introduced by others will not reflect on the original
5451 authors' reputations.
5453 Finally, any free program is threatened constantly by software
5454 patents. We wish to avoid the danger that redistributors of a free
5455 program will individually obtain patent licenses, in effect making the
5456 program proprietary. To prevent this, we have made it clear that any
5457 patent must be licensed for everyone's free use or not licensed at all.
5459 The precise terms and conditions for copying, distribution and
5460 modification follow.
5462 GNU GENERAL PUBLIC LICENSE
5463 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
5465 0. This License applies to any program or other work which contains
5466 a notice placed by the copyright holder saying it may be distributed
5467 under the terms of this General Public License. The "Program", below,
5468 refers to any such program or work, and a "work based on the Program"
5469 means either the Program or any derivative work under copyright law:
5470 that is to say, a work containing the Program or a portion of it,
5471 either verbatim or with modifications and/or translated into another
5472 language. (Hereinafter, translation is included without limitation in
5473 the term "modification".) Each licensee is addressed as "you".
5475 Activities other than copying, distribution and modification are not
5476 covered by this License; they are outside its scope. The act of
5477 running the Program is not restricted, and the output from the Program
5478 is covered only if its contents constitute a work based on the
5479 Program (independent of having been made by running the Program).
5480 Whether that is true depends on what the Program does.
5482 1. You may copy and distribute verbatim copies of the Program's
5483 source code as you receive it, in any medium, provided that you
5484 conspicuously and appropriately publish on each copy an appropriate
5485 copyright notice and disclaimer of warranty; keep intact all the
5486 notices that refer to this License and to the absence of any warranty;
5487 and give any other recipients of the Program a copy of this License
5488 along with the Program.
5490 You may charge a fee for the physical act of transferring a copy, and
5491 you may at your option offer warranty protection in exchange for a fee.
5493 2. You may modify your copy or copies of the Program or any portion
5494 of it, thus forming a work based on the Program, and copy and
5495 distribute such modifications or work under the terms of Section 1
5496 above, provided that you also meet all of these conditions:
5498 a) You must cause the modified files to carry prominent notices
5499 stating that you changed the files and the date of any change.
5501 b) You must cause any work that you distribute or publish, that in
5502 whole or in part contains or is derived from the Program or any
5503 part thereof, to be licensed as a whole at no charge to all third
5504 parties under the terms of this License.
5506 c) If the modified program normally reads commands interactively
5507 when run, you must cause it, when started running for such
5508 interactive use in the most ordinary way, to print or display an
5509 announcement including an appropriate copyright notice and a
5510 notice that there is no warranty (or else, saying that you provide
5511 a warranty) and that users may redistribute the program under
5512 these conditions, and telling the user how to view a copy of this
5513 License. (Exception: if the Program itself is interactive but
5514 does not normally print such an announcement, your work based on
5515 the Program is not required to print an announcement.)
5517 These requirements apply to the modified work as a whole. If
5518 identifiable sections of that work are not derived from the Program,
5519 and can be reasonably considered independent and separate works in
5520 themselves, then this License, and its terms, do not apply to those
5521 sections when you distribute them as separate works. But when you
5522 distribute the same sections as part of a whole which is a work based
5523 on the Program, the distribution of the whole must be on the terms of
5524 this License, whose permissions for other licensees extend to the
5525 entire whole, and thus to each and every part regardless of who wrote it.
5527 Thus, it is not the intent of this section to claim rights or contest
5528 your rights to work written entirely by you; rather, the intent is to
5529 exercise the right to control the distribution of derivative or
5530 collective works based on the Program.
5532 In addition, mere aggregation of another work not based on the Program
5533 with the Program (or with a work based on the Program) on a volume of
5534 a storage or distribution medium does not bring the other work under
5535 the scope of this License.
5537 3. You may copy and distribute the Program (or a work based on it,
5538 under Section 2) in object code or executable form under the terms of
5539 Sections 1 and 2 above provided that you also do one of the following:
5541 a) Accompany it with the complete corresponding machine-readable
5542 source code, which must be distributed under the terms of Sections
5543 1 and 2 above on a medium customarily used for software interchange; or,
5545 b) Accompany it with a written offer, valid for at least three
5546 years, to give any third party, for a charge no more than your
5547 cost of physically performing source distribution, a complete
5548 machine-readable copy of the corresponding source code, to be
5549 distributed under the terms of Sections 1 and 2 above on a medium
5550 customarily used for software interchange; or,
5552 c) Accompany it with the information you received as to the offer
5553 to distribute corresponding source code. (This alternative is
5554 allowed only for noncommercial distribution and only if you
5555 received the program in object code or executable form with such
5556 an offer, in accord with Subsection b above.)
5558 The source code for a work means the preferred form of the work for
5559 making modifications to it. For an executable work, complete source
5560 code means all the source code for all modules it contains, plus any
5561 associated interface definition files, plus the scripts used to
5562 control compilation and installation of the executable. However, as a
5563 special exception, the source code distributed need not include
5564 anything that is normally distributed (in either source or binary
5565 form) with the major components (compiler, kernel, and so on) of the
5566 operating system on which the executable runs, unless that component
5567 itself accompanies the executable.
5569 If distribution of executable or object code is made by offering
5570 access to copy from a designated place, then offering equivalent
5571 access to copy the source code from the same place counts as
5572 distribution of the source code, even though third parties are not
5573 compelled to copy the source along with the object code.
5575 4. You may not copy, modify, sublicense, or distribute the Program
5576 except as expressly provided under this License. Any attempt
5577 otherwise to copy, modify, sublicense or distribute the Program is
5578 void, and will automatically terminate your rights under this License.
5579 However, parties who have received copies, or rights, from you under
5580 this License will not have their licenses terminated so long as such
5581 parties remain in full compliance.
5583 5. You are not required to accept this License, since you have not
5584 signed it. However, nothing else grants you permission to modify or
5585 distribute the Program or its derivative works. These actions are
5586 prohibited by law if you do not accept this License. Therefore, by
5587 modifying or distributing the Program (or any work based on the
5588 Program), you indicate your acceptance of this License to do so, and
5589 all its terms and conditions for copying, distributing or modifying
5590 the Program or works based on it.
5592 6. Each time you redistribute the Program (or any work based on the
5593 Program), the recipient automatically receives a license from the
5594 original licensor to copy, distribute or modify the Program subject to
5595 these terms and conditions. You may not impose any further
5596 restrictions on the recipients' exercise of the rights granted herein.
5597 You are not responsible for enforcing compliance by third parties to
5600 7. If, as a consequence of a court judgment or allegation of patent
5601 infringement or for any other reason (not limited to patent issues),
5602 conditions are imposed on you (whether by court order, agreement or
5603 otherwise) that contradict the conditions of this License, they do not
5604 excuse you from the conditions of this License. If you cannot
5605 distribute so as to satisfy simultaneously your obligations under this
5606 License and any other pertinent obligations, then as a consequence you
5607 may not distribute the Program at all. For example, if a patent
5608 license would not permit royalty-free redistribution of the Program by
5609 all those who receive copies directly or indirectly through you, then
5610 the only way you could satisfy both it and this License would be to
5611 refrain entirely from distribution of the Program.
5613 If any portion of this section is held invalid or unenforceable under
5614 any particular circumstance, the balance of the section is intended to
5615 apply and the section as a whole is intended to apply in other
5618 It is not the purpose of this section to induce you to infringe any
5619 patents or other property right claims or to contest validity of any
5620 such claims; this section has the sole purpose of protecting the
5621 integrity of the free software distribution system, which is
5622 implemented by public license practices. Many people have made
5623 generous contributions to the wide range of software distributed
5624 through that system in reliance on consistent application of that
5625 system; it is up to the author/donor to decide if he or she is willing
5626 to distribute software through any other system and a licensee cannot
5629 This section is intended to make thoroughly clear what is believed to
5630 be a consequence of the rest of this License.
5632 8. If the distribution and/or use of the Program is restricted in
5633 certain countries either by patents or by copyrighted interfaces, the
5634 original copyright holder who places the Program under this License
5635 may add an explicit geographical distribution limitation excluding
5636 those countries, so that distribution is permitted only in or among
5637 countries not thus excluded. In such case, this License incorporates
5638 the limitation as if written in the body of this License.
5640 9. The Free Software Foundation may publish revised and/or new versions
5641 of the General Public License from time to time. Such new versions will
5642 be similar in spirit to the present version, but may differ in detail to
5643 address new problems or concerns.
5645 Each version is given a distinguishing version number. If the Program
5646 specifies a version number of this License which applies to it and "any
5647 later version", you have the option of following the terms and conditions
5648 either of that version or of any later version published by the Free
5649 Software Foundation. If the Program does not specify a version number of
5650 this License, you may choose any version ever published by the Free Software
5653 10. If you wish to incorporate parts of the Program into other free
5654 programs whose distribution conditions are different, write to the author
5655 to ask for permission. For software which is copyrighted by the Free
5656 Software Foundation, write to the Free Software Foundation; we sometimes
5657 make exceptions for this. Our decision will be guided by the two goals
5658 of preserving the free status of all derivatives of our free software and
5659 of promoting the sharing and reuse of software generally.
5663 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
5664 FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
5665 OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
5666 PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
5667 OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
5668 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
5669 TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
5670 PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
5671 REPAIR OR CORRECTION.
5673 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
5674 WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
5675 REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
5676 INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
5677 OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
5678 TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
5679 YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
5680 PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
5681 POSSIBILITY OF SUCH DAMAGES.
5683 END OF TERMS AND CONDITIONS
5685 How to Apply These Terms to Your New Programs
5687 If you develop a new program, and you want it to be of the greatest
5688 possible use to the public, the best way to achieve this is to make it
5689 free software which everyone can redistribute and change under these terms.
5691 To do so, attach the following notices to the program. It is safest
5692 to attach them to the start of each source file to most effectively
5693 convey the exclusion of warranty; and each file should have at least
5694 the "copyright" line and a pointer to where the full notice is found.
5696 <one line to give the program's name and a brief idea of what it does.>
5697 Copyright (C) <year> <name of author>
5699 This program is free software; you can redistribute it and/or modify
5700 it under the terms of the GNU General Public License as published by
5701 the Free Software Foundation; either version 2 of the License, or
5702 (at your option) any later version.
5704 This program is distributed in the hope that it will be useful,
5705 but WITHOUT ANY WARRANTY; without even the implied warranty of
5706 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5707 GNU General Public License for more details.
5709 You should have received a copy of the GNU General Public License along
5710 with this program; if not, write to the Free Software Foundation, Inc.,
5711 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
5714 Also add information on how to contact you by electronic and paper mail.
5716 If the program is interactive, make it output a short notice like this
5717 when it starts in an interactive mode:
5719 Gnomovision version 69, Copyright (C) year name of author
5720 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
5721 This is free software, and you are welcome to redistribute it
5722 under certain conditions; type `show c' for details.
5724 The hypothetical commands `show w' and `show c' should show the appropriate
5725 parts of the General Public License. Of course, the commands you use may
5726 be called something other than `show w' and `show c'; they could even be
5727 mouse-clicks or menu items--whatever suits your program.
5729 You should also get your employer (if you work as a programmer) or your
5730 school, if any, to sign a "copyright disclaimer" for the program, if
5731 necessary. Here is a sample; alter the names:
5733 Yoyodyne, Inc., hereby disclaims all copyright interest in the program
5734 `Gnomovision' (which makes passes at compilers) written by James Hacker.
5736 <signature of Ty Coon>, 1 April 1989
5737 Ty Coon, President of Vice
5739 This General Public License does not permit incorporating your program into
5740 proprietary programs. If your program is a subroutine library, you may
5741 consider it more useful to permit linking proprietary applications with the
5742 library. If this is what you want to do, use the GNU Library General
5743 Public License instead of this License.
5748 License for Scintilla and SciTE
5749 ===============================
5751 Copyright 1998-2003 by Neil Hodgson <neilh(at)scintilla(dot)org>
5755 Permission to use, copy, modify, and distribute this software and
5756 its documentation for any purpose and without fee is hereby granted,
5757 provided that the above copyright notice appear in all copies and
5758 that both that copyright notice and this permission notice appear in
5759 supporting documentation.
5761 NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
5762 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
5763 NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY SPECIAL, INDIRECT OR
5764 CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
5765 OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
5766 OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
5767 USE OR PERFORMANCE OF THIS SOFTWARE.