should be written
There are some options which can only changed at compile time. To change these
options, look into src/geany.h
to change these settings.
To find it, look for a block of lines starting with “#define GEANY_*”.
All definitions which are not listed here, should not be changed.
Table 3.3. Compile time options
Option | Description | Default |
---|---|---|
GEANY_MAX_OPEN_FILES | The limit how many files can be open at the same time. | 25 |
GEANY_SESSION_FILES | How many files should be reopened from the last run. Obviously, the value should be smaller than GEANY_MAX_OPEN_FILES. | 15 |
GEANY_WORDCHARS | These characters define the word boundaries. | (look at sourcecode) |
GEANY_MAX_AUTOCOMPLETE_WORDS | How many auto complete suggestions should Geany provide. | 30 |
GEANY_STRING_UNTITLED | A string used as name for new files. Be aware that the string can be translated, so change it only if you know what you are doing. | untitled |
GEANY_CHECK_FILE_DELAY | Time in seconds between a file is checked for changes. | 30 |
GEANY_WINDOW_MINIMAL_WIDTH | The minimal width of the main window. | 620 |
GEANY_WINDOW_MINIMAL_HEIGHT | The minimal height of the main window. | 440 |
GEANY_WINDOW_DEFAULT_WIDTH | The default width of the main window at the first start. | 900 |
GEANY_WINDOW_DEFAULT_HEIGHT | The default height of the main window at the first start. | 600 |