Go to file
Frank Lanitz 64b5eadf12
Merge pull request #2477 from dmitryunruh/master
Corrected a Russian translation of the word Appearance in Preferences
2020-04-26 10:06:21 +02:00
ctags moved bibtex definition to the end of filetypes and parser definitions 2019-09-21 05:02:51 +02:00
data Remove explicit static accessible name from the main window 2020-01-15 23:46:32 +01:00
doc doc: added documentation for the Color Chooser 2019-10-07 18:00:31 +01:00
icons icon: regenerate png/ico files based on the svg 2015-04-12 22:44:50 +02:00
m4 Fix configure to show "default=auto" for --enable-api-docs (#2190) 2019-07-19 10:40:46 +02:00
plugins Update all copyright notices to mention only the first publish year 2019-04-07 11:43:58 +02:00
po Corrected a Russian translation of the word Appearance in Preferences 2020-04-18 11:35:38 +10:00
scintilla scintilla: Fix GCC 4.8 support wrt noexcept move constructors 2019-05-03 17:49:55 +02:00
scripts Update functions and variables for the NSIS filetype 2019-07-06 15:23:23 +02:00
src Merge pull request #2371 from ntrel/fif-strings 2019-11-26 10:15:06 +01:00
tests utils: fix suboptimal elipsis substitution by utils_strv_shorten_file_list() 2019-09-20 23:01:03 +02:00
.gitignore Remove unused spec (RPM) file 2019-01-20 22:47:24 +01:00
.travis.yml travis: Add binreloc to the build matrix 2018-12-02 23:13:48 +01:00
AUTHORS Add Matthew Brush as developer 2011-11-11 16:41:52 +01:00
COMMITTERS Add Colomban to the COMMITTERS list 2011-03-02 22:58:02 +00:00
COPYING Update FSF address 2012-08-24 19:25:57 +02:00
ChangeLog Generate ChangeLog from Git log 2012-06-17 19:35:12 +02:00
ChangeLog.pre-1-22 Concatenate ChangeLog.pre-0-17 and ChangeLog.pre-1-22 2016-01-06 21:52:46 +01:00
HACKING Fix broken markup in HACKING 2019-08-31 12:34:38 +02:00
INSTALL Remove faulty empty lines 2017-03-05 13:42:38 +01:00
Makefile.am Remove unused spec (RPM) file 2019-01-20 22:47:24 +01:00
NEWS Post release version bump 2019-09-28 15:52:12 +02:00
README Update all copyright notices to mention only the first publish year 2019-04-07 11:43:58 +02:00
README.I18N Use HTTPS URL for domain www.geany.org 2018-04-23 17:11:37 +02:00
README.Packagers Update all copyright notices to mention only the first publish year 2019-04-07 11:43:58 +02:00
README.rst Add a README.rst link for GitHub to know the format and render it 2016-06-25 16:59:32 +02:00
THANKS a minor translation update. (#2367) 2019-11-24 15:22:48 +01:00
TODO Remove GNU regex now we have GRegex 2012-01-02 18:03:21 +00:00
autogen.sh Don't warn about missing configure flags if configure shall be skipped 2012-04-12 22:41:47 +02:00
configure.ac Post release version bump 2019-09-28 15:52:12 +02:00
geany.desktop.in #2459: Add Geany to Category TextEditor (#2460) 2020-04-09 09:18:17 +10:00
geany.exe.manifest Post release version bump 2019-09-28 15:52:12 +02:00
geany.gladep Don't regenerate the support.[hc] files, to prevent unnecessary rebuilding of files dependent on support.h. 2007-05-01 11:32:52 +00:00
geany.nsi.in Windows installer: Migrate to NSIS 3.x 2019-06-10 14:39:50 +02:00
geany.pc.in Replace references to GTK2 with GTK+ 2015-07-10 22:58:48 +02:00
geany_private.rc Post release version bump 2019-09-28 15:52:12 +02:00

README

Geany - A fast and lightweight IDE
----------------------------------


About
-----
Geany is a small and lightweight integrated development environment.
It was developed to provide a small and fast IDE, which has only a
few dependencies from other packages. Another goal was to be as independent
as possible from a special Desktop Environment like KDE or GNOME. So it
is using only the GTK+ toolkit and therefore you need only the
GTK+ runtime libraries to run Geany.


Features
--------
The basic features of Geany are:

- syntax highlighting
- code completion
- auto completion of often used constructs like if, for and while
- auto completion of XML and HTML tags
- call tips
- folding
- many supported filetypes like C, Java, PHP, HTML, Python, Perl, Pascal
- symbol lists
- embedded terminal emulation
- extensibility through plugins


Installation from distribution packages
---------------------------------------
Using distribution packages on Linux, BSD and similar distributions
is the easiest and recommended way. This way you will also benefit
from automatic Geany updates by the package manager of the distribution.

Packages are available for most distributions including Debian, Fedora, Ubuntu
and many more.


Installation on Mac OS and Windows
----------------------------------
Prebuilt binary packages for Mac OS and Windows can be found on
https://www.geany.org.


Installation from sources
-------------------------

Requirements
++++++++++++
For compiling Geany yourself, you will need the GTK2 (>= 2.24) or
GTK3 libraries and header files. You will also need its dependency libraries
and header files, such as Pango, Glib and ATK. All these files are
available at https://www.gtk.org.

Furthermore you need, of course, a C compiler and the Make tool; a C++
compiler is also needed for the required Scintilla library included. The
GNU versions of these tools are recommended.


To build the user manual you need *rst2html* from Docutils. A pre-built
version of the manual is available in distribution tarballs and will be used as
fallback if *rst2html* is missing. When building from Git however, that
pre-built version is not included and *rst2html* is required by default.
You can explicitly disable building the user manual using the
``--disable-html-docs`` *configure* flag, but this will result in not
installing a local version of the user manual, and Geany will then try
and open the online version instead when requested.


.. note::
    Building Geany from source on Mac OS and Windows is more complicated
    and is out of scope of this document. For more information on
    building instructions for these platforms, please check the wiki
    at https://wiki.geany.org/howtos/.

Installing from a Git clone
+++++++++++++++++++++++++++

Install Autotools (*automake*, *autoconf* and *libtool*), *intltool*,
and the GLib development files **before** running any of the following
commands, as well as *rst2html* from Docutils (see above for details).
Then, run ``./autogen.sh`` and then follow the instructions for
`installing from a release tarball`_.

Installing from a release tarball
+++++++++++++++++++++++++++++++++

Run the the following three commands::

    $ ./configure
    $ make
    (as root, or using sudo)
    % make install

For more configuration details run ``./configure --help``.

If there are any errors during compilation, check your build environment
and try to find the error, otherwise contact the mailing list or one of
the authors.

See the manual for details (geany.txt/geany.html).


Usage
-----
To run Geany just type::

    $ geany

on a console or use the applications menu from your desktop environment.
For command line options, see the manual page of Geany or run::

    $ geany --help

for details. Or look into the documentation in the *doc/* directory.
The most important option probably is ``-c`` or ``--config``, where you can
specify an alternate configuration directory.


License
-------
Geany is distributed under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.  A copy of this license
can be found in the file COPYING included with the source code of this
program.
The included Scintilla library (found in the subdirectory scintilla/)
has its own license, which can be found in the file scintilla/License.txt
included with the source code of this program.


Ideas, questions, patches and bug reports
-----------------------------------------
See https://www.geany.org/.
If you add something, or fix a bug, please create a pull request at
https://github.com/geany/geany/. Also see the HACKING file.