descriptionA fast and lightweight IDE
homepage URLhttp://www.geany.org
repository URLhttps://github.com/geany/geany.git
ownerenrico.troeger@uvena.de
last changeFri, 10 May 2024 19:50:42 +0000 (10 21:50 +0200)
last refreshSat, 11 May 2024 14:56:10 +0000 (11 16:56 +0200)
content tags
add:
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.

.. image:: doc/images/main_window.png
  :width: 750
  :alt: Screenshot of Geany showing the main user interface
  :target: doc/images/main_window.png


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 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
+++++++++++++++++++++++++++

Using the Meson build system
++++++++++++++++++++++++++++

N.B. Meson support is still incomplete and a work-in-progress.

Meson requires to chose a separate build directory. Either create
one, or let meson do it:

`meson build` or `mkdir build; cd build; meson ..`

Either command will configure the build system. The system is probed
in many ways and system-dependant build files are created. This includes
location of dependencies and compiler and linker flags required for them.

To build Geany, follow with a `meson compile -C build`

To install Geany, follow the build with a `sudo meson install -C build`.

By default, meson will install Geany to `/usr/local`. A different
prefix can be selected at the initial command or via reconfiguration:

`meson --prefix /opt build` or `meson configure --prefix /opt build`

Geany has some selectable features that may reduce the required
build and runtime dependencies. See meson_optionts.txt for a full list.

To turn a feature off, use `-D<feature>=false` when configuring the build,
for example: `meson configure -Dvte=false build`

Using Autotools
+++++++++++++++

Install Autotools (*autopoint*, *automake*, *autoconf* and *libtool*),
*gettext*, 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.
shortlog
19 hours ago Colomban WendlingMerge pull request #3759 from andy5995/meson-fix-deprec... master
24 hours ago andy5995Fix deprecation warning about str.format() during meson...
10 days ago Frank LanitzSmall update of German translation
2024-04-23 Jiří TechetMerge pull request #3785 from techee/anon_fix
2024-04-23 Jiří TechetRename both scope and var_type of anonymous types
2024-04-22 Colomban Wendlingmeson: Use host instead of target
2024-04-21 Colomban WendlingMerge pull request #3720 from b4n/encodings-ui-improvements
2024-04-21 Colomban WendlingMerge pull request #3716 from b4n/encodings-fixes
2024-04-21 Colomban WendlingMerge pull request #3163 from techee/ocaml_parser
2024-04-21 Enrico TrögerMerge pull request #3656 from cx384/fortran_keywords
2024-04-20 Colomban Wendlingtests: Mark several functions static
2024-04-20 Colomban WendlingMerge pull request #3846 from b4n/utils-get-initials
2024-04-20 Colomban WendlingFix invalid memory access and Unicode support in utils_...
2024-04-18 Colomban WendlingMerge pull request #3837 from b4n/erl-ns
2024-04-18 Colomban WendlingMerge pull request #3838 from b4n/search-after-toolbar...
2024-04-15 Nick TreleavenFix Find in Files invalid directory error (#3818)
...
tags
6 months ago 2.0.0 Tag the 2.0 release
2 years ago 1.38.0 Tag the 1.38 release
3 years ago 1.37.1 Tag the 1.37.1 release
3 years ago 1.37.0 Tag the 1.37 release
4 years ago 1.36.0 Tag the 1.36 release
5 years ago 1.35.0 Tag the 1.35 release
5 years ago 1.34.1 Tag the 1.34.1 release
5 years ago 1.34.0 Tag the 1.34 release
6 years ago 1.33.0 Tag the 1.33 release
6 years ago 1.32.0 Tag the 1.32 release
6 years ago 1.31.0 Tag the 1.31 release
7 years ago 1.30.1 Tag the 1.30.1 release
7 years ago 1.30.0 Tag the 1.30 release
7 years ago 1.29.0 Tag the 1.29 release
7 years ago 1.28.0 Tag the 1.28 release
8 years ago 1.27.0 Tag the 1.27 release
...
heads
19 hours ago master
2 years ago elextr-patch-1
2 years ago Update-doxygen-configuration
3 years ago startup-speed
3 years ago 1.37
3 years ago libreapay-funding
4 years ago build-exec
5 years ago 1.34
6 years ago elextr-patch-2
7 years ago 1.30
7 years ago b4n/c/backslashes
8 years ago 1.27
10 years ago 1.24
10 years ago ctags-tests
10 years ago 1.23
11 years ago sm
...
forks
Cached version (6569s old)
geany-mirror/kugel-geany.git My Geany repo thomas.martitz@student... 12 years ago