Hi,
I just wanted to leave a note for everybody who is not reading the the
svn mailing list. I've just upgraded the minimum dependencies for Geany
plugins project to 0.16 since most of the included plugins will not
compile with any version below. Please note, I only did the change on
waf build support. Plugin maintainer that are using autotools needs to
update the dependencies on their own ;)
Cheers,
Frank
--
http://frank.uvena.de/en/
Hi all,
Does anyone know of a way to do "paragraph formatting" in Geany? I.e.
break long lines in a selected block to be no more than a certain
length?
In the joe editor this is achieved by selecting text and pressing
Ctrl-K-H in case someone needs to see what I'm talking about.
Thanks!
Conrad
--
-----------------------------------------------------------------------------
Conrad D. Steenberg Ph.D. conrad.steenberg(a)caltech.edu
Scientific Software Engineer http://clarens.caltech.edu
Pierce Bio-Engineering Lab Mail Code 114-96
California Institute of Technology Pasadena, CA, 91125
Hi all,
I'm happy to announce first maintenance release of GeanyLipsum, a plugin
to insert Lorem Ipsum text into your documents.
Version 0.1.1 includes some code cleanup as well as fixes some memory
leaks. Nevertheless it also fixes a problem on Undo/Redo inserting
text. A huge thanks to Enrico providing some patches here.
This release of GeanyLipsum is depending on Geany v0.16. Versions
below are not supported at the moment.
I've uploaded the source code as well as added some information to
a short the website.
Website:
http://frank.uvena.de/en/Geany/geanylipsum/
Downloadlink:
http://frank.uvena.de/files/geany/geanylipsum-0.1.1.tar.gz
Have fun,
Frank
--
http://frank.uvena.de/en/
Hi,
Attached is a small patch that fixes one of my favorite :-) annoyances:
when you select "Go to line" from the search menu (or hit ctrl+l), the
line number in the dialog window is now selected. So you can type in the
line number you want without having to delete your current line number
first.
While I was at it, I also limited the maximum line number for that
dialog's spinner to the number of lines in the file, instead of the
rather arbitrary 10 million.
--
Bert Vermeulen
bert(a)biot.com
Hi guys,
I tried to update my working copy of the build-system branch with the latest
changes in trunk so I had a reasonably up to date basis for further work.
Used: svn merge https://geany.svn.sourceforge.net/svnroot/geany/trunk
it noted conflicts in build.c/h and project.c as expected but it also
deleted files like autogen.sh and Makefile.am as well as directories
tagmanager and data among others.
Full command output attached(extracted from my xterm to file with self
explanatory name aaa ;-).
Obviously it won't build and is generally !@#$%^&*(ed.
I'm no svn guru, any suggestions for fixes or a better way of doing it?
Cheers
Lex
Hi all,
in recent GLib versions, passing non-NULL arguments to
g_win32_get_package_installation_directory() is deprecated and probably
won't work anymore with GLib 2.20 (or maybe one of the next releases).
So, it'd be nice if you could change your code to pass two NULL
arguments or even better use
g_win32_get_package_installation_directory_of_module() instead,
(http://library.gnome.org/devel/glib/stable/glib-Windows-Compatibility-Funct…)
Affected plugins:
geanygdb/src/geanydebug.c:324:
gchar *install_dir = g_win32_get_package_installation_directory
("geany", NULL);
geany-mini-script/src/gms.c:268:
gchar *install_dir = g_win32_get_package_installation_directory
("geany", NULL);
geanyprj/src/geanyprj.c:134:
gchar *install_dir = g_win32_get_package_installation_directory
("geany", NULL);
Thanks,
Enrico
--
Get my GPG key from http://www.uvena.de/pub.asc
Hi all,
some days ago, I was a little bored and set up automatic building of the
SVN version on nightly.geany.org.
So far, the latest SVN version is built for Windows (cross-compiled)
and for Debian Lenny (should still also work with Debian
Testing/Unstable).
The builds are created automatically every night (UTC) on a Debian Lenny
system, so there is no guarantee that they work but they should :).
The Windows build can be found in a ZIP archive on
http://nightly.geany.org/win32/ together with some usage instructions.
As a little bonus, this ZIP archive contains also all plugins from the
Geany-Plugins project which can be built on Windows.
The Debian .debs can be found on http://nightly.geany.org/debian/. The
package is based on the officially Geany package in Debian by Damián.
http://nightly.geany.org/debian/ can also be used as a source for the
APT package management, usage instructions are available on the site.
Regards,
Enrico
P.S.: neither the Windows executables nor the Debian package are signed
unlike the releases since they are created automatically on the server.
Just for your information.
--
Get my GPG key from http://www.uvena.de/pub.asc
Hi,
Since 0.4 of GeanyLaTeX will still take some time I've created a devel
snapshot and uploaded to
http://frank.uvena.de/files/geany/testing/geanylatex-0.3.91.tar.gz
It's basically current svn version and should build and work with Geany
0.16.
Features I've add since 0.3 release:
* Added some help on formating of text
(\begin{texttt} .. \end{texttt} etc.)
* Added some help on inserting environments
* Bulk replace and replace on typing of special characters e.g. » will
be replaced by \frqq
* Added keybinding for inserting \\ and \item
I'd be happy if you could do some testing and give me some feedback ;)
Thanks,
Frank
--
http://frank.uvena.de/en/
The indentation type (tabs/spaces/...) is a document's property. I'd
appreciate if the tab width would be a document's property as well.
For example, Python and C files typically require different tab widths.
Setting that value separately for each document would be desirable.
What do you think?
Wolfgang