Revision: 592
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=592&view=rev
Author: eht16
Date: 2009-04-17 13:28:06 +0000 (Fri, 17 Apr 2009)
Log Message:
-----------
Show the currently used language in the toolbutton tooltip.
Modified Paths:
--------------
trunk/spellcheck/ChangeLog
trunk/spellcheck/src/gui.c
trunk/spellcheck/src/gui.h
trunk/spellcheck/src/scplugin.c
Modified: trunk/spellcheck/ChangeLog
===================================================================
--- trunk/spellcheck/ChangeLog 2009-04-17 13:16:02 UTC (rev 591)
+++ trunk/spellcheck/ChangeLog 2009-04-17 13:28:06 UTC (rev 592)
@@ -4,6 +4,7 @@
List the available languages in the Tools menu as radio items
to easily indicate which language is currently in use.
Show the default language also next to the 'Default' menu item.
+ Show the currently used language in the toolbutton tooltip.
2009-03-05 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/spellcheck/src/gui.c
===================================================================
--- trunk/spellcheck/src/gui.c 2009-04-17 13:16:02 UTC (rev 591)
+++ trunk/spellcheck/src/gui.c 2009-04-17 13:28:06 UTC (rev 592)
@@ -81,6 +81,21 @@
}
+void sc_gui_update_tooltip(void)
+{
+#if GTK_CHECK_VERSION(2, 12, 0)
+ if (sc_info->toolbar_button != NULL)
+ {
+ gchar *text = g_strdup_printf(
+ _("Toggle spell check while typing (current language: %s)"),
+ (sc_info->default_language != NULL) ? sc_info->default_language : _("unknown"));
+ gtk_tool_item_set_tooltip_text(GTK_TOOL_ITEM(sc_info->toolbar_button), text);
+ g_free(text);
+ }
+#endif
+}
+
+
void sc_gui_toolbar_update(void)
{
/* toolbar item is not requested, so remove the item if it exists */
@@ -96,10 +111,8 @@
if (sc_info->toolbar_button == NULL)
{
sc_info->toolbar_button = gtk_toggle_tool_button_new_from_stock(GTK_STOCK_SPELL_CHECK);
-#if GTK_CHECK_VERSION(2, 12, 0)
- gtk_tool_item_set_tooltip_text(GTK_TOOL_ITEM(sc_info->toolbar_button),
- _("Toggle spell check while typing"));
-#endif
+ sc_gui_update_tooltip();
+
plugin_add_toolbar_item(geany_plugin, sc_info->toolbar_button);
ui_add_document_sensitive(GTK_WIDGET(sc_info->toolbar_button));
@@ -415,6 +428,7 @@
{
setptr(sc_info->default_language, g_strdup(gdata));
sc_speller_reinit_enchant_dict();
+ sc_gui_update_tooltip();
}
editor_indicator_clear(doc->editor, GEANY_INDICATOR_ERROR);
Modified: trunk/spellcheck/src/gui.h
===================================================================
--- trunk/spellcheck/src/gui.h 2009-04-17 13:16:02 UTC (rev 591)
+++ trunk/spellcheck/src/gui.h 2009-04-17 13:28:06 UTC (rev 592)
@@ -50,6 +50,8 @@
void sc_gui_update_menu(void);
+void sc_gui_update_tooltip(void);
+
void sc_gui_init(void);
void sc_gui_free(void);
Modified: trunk/spellcheck/src/scplugin.c
===================================================================
--- trunk/spellcheck/src/scplugin.c 2009-04-17 13:16:02 UTC (rev 591)
+++ trunk/spellcheck/src/scplugin.c 2009-04-17 13:28:06 UTC (rev 592)
@@ -117,6 +117,7 @@
setptr(sc_info->default_language, gtk_combo_box_get_active_text(GTK_COMBO_BOX(
g_object_get_data(G_OBJECT(dialog), "combo"))));
sc_speller_reinit_enchant_dict();
+ sc_gui_update_tooltip();
sc_info->check_while_typing = (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(
g_object_get_data(G_OBJECT(dialog), "check_type"))));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 589
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=589&view=rev
Author: frlan
Date: 2009-04-13 19:31:11 +0000 (Mon, 13 Apr 2009)
Log Message:
-----------
GeanyLipsum: Add not complete part of Lorem Ipsum text if there is any at end of insertion
Modified Paths:
--------------
trunk/geanylipsum/ChangeLog
trunk/geanylipsum/src/geanylipsum.c
Modified: trunk/geanylipsum/ChangeLog
===================================================================
--- trunk/geanylipsum/ChangeLog 2009-04-13 19:30:11 UTC (rev 588)
+++ trunk/geanylipsum/ChangeLog 2009-04-13 19:31:11 UTC (rev 589)
@@ -1,3 +1,9 @@
+2009-04-11 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * Add not complete part of Lorem Ipsum text if there is any at end of
+ insertion.
+
+
2009-04-01 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* Preparation for 0.1.1 maintenance release
Modified: trunk/geanylipsum/src/geanylipsum.c
===================================================================
--- trunk/geanylipsum/src/geanylipsum.c 2009-04-13 19:30:11 UTC (rev 588)
+++ trunk/geanylipsum/src/geanylipsum.c 2009-04-13 19:31:11 UTC (rev 589)
@@ -114,16 +114,15 @@
sci_start_undo_action(doc->editor->sci);
/* Insert lipsum snippet as often as needed ... */
- for (i = 0; i < x; i++)
- insert_string(doc, lipsum);
-
- /* .. and insert a little more if needed */
if (missing > 0)
{
gchar *missing_text = g_strndup(lipsum, missing);
insert_string(doc, missing_text);
g_free(missing_text);
}
+ for (i = 0; i < x; i++)
+ insert_string(doc, lipsum);
+
sci_end_undo_action(doc->editor->sci);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 588
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=588&view=rev
Author: frlan
Date: 2009-04-13 19:30:11 +0000 (Mon, 13 Apr 2009)
Log Message:
-----------
GeanyLaTeX: Sort entries on insert reference dialog by alphabet
Modified Paths:
--------------
trunk/geanylatex/ChangeLog
trunk/geanylatex/doc/geanylatex.tex
trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/ChangeLog
===================================================================
--- trunk/geanylatex/ChangeLog 2009-04-10 08:32:59 UTC (rev 587)
+++ trunk/geanylatex/ChangeLog 2009-04-13 19:30:11 UTC (rev 588)
@@ -1,3 +1,8 @@
+2009-04-10 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * Sort entries on insert reference dialog by alphabet
+
+
2009-03-30 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* Moved replacement functions into their own submenu.
Modified: trunk/geanylatex/doc/geanylatex.tex
===================================================================
--- trunk/geanylatex/doc/geanylatex.tex 2009-04-10 08:32:59 UTC (rev 587)
+++ trunk/geanylatex/doc/geanylatex.tex 2009-04-13 19:30:11 UTC (rev 588)
@@ -213,11 +213,10 @@
The suggestions inside the pull down are based on the aux file creating
by processing of *.tex file. The plugin is searching for a aux file
-for the current open *.tex file inside current directory. When first stept
+for the current open *.tex file inside current directory. When first step
was successful the file is parsed for \texttt{\textbackslash
newlabel\{\}\{\}\{\}} and tries to interpret them properly. The found
-entries will be inserted into pull down sorted by appearance inside aux
-file which should be appearance inside document in most of cases.
+entries will be inserted into pull down sorted by alphabet.
Both, the inserting labels as well as the inserting reference dialog
can be accessed by key binding also. See chapter \ref{kb_insert_label}
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2009-04-10 08:32:59 UTC (rev 587)
+++ trunk/geanylatex/src/geanylatex.c 2009-04-13 19:30:11 UTC (rev 588)
@@ -280,6 +280,7 @@
GtkWidget *table = NULL;
GtkWidget *radio1 = NULL;
GtkWidget *radio2 = NULL;
+ GtkTreeModel *model = NULL;
dialog = gtk_dialog_new_with_buttons(_("Insert Reference"),
@@ -298,6 +299,9 @@
label_ref = gtk_label_new(_("Reference name:"));
textbox_ref = gtk_combo_box_entry_new_text();
glatex_add_Labels(textbox_ref, glatex_get_aux_file());
+ model = gtk_combo_box_get_model(GTK_COMBO_BOX(textbox_ref));
+ gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(model),
+ 0, GTK_SORT_ASCENDING);
gtk_misc_set_alignment(GTK_MISC(label_ref), 0, 0.5);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 587
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=587&view=rev
Author: frlan
Date: 2009-04-10 08:32:59 +0000 (Fri, 10 Apr 2009)
Log Message:
-----------
GeanyLaTeX: Fix usage of some commands inside documentation
Modified Paths:
--------------
trunk/geanylatex/doc/geanylatex.tex
Modified: trunk/geanylatex/doc/geanylatex.tex
===================================================================
--- trunk/geanylatex/doc/geanylatex.tex 2009-04-10 08:31:59 UTC (rev 586)
+++ trunk/geanylatex/doc/geanylatex.tex 2009-04-10 08:32:59 UTC (rev 587)
@@ -46,7 +46,7 @@
\hypersetup{pdftex=true, colorlinks=true, breaklinks=true, linkcolor=black, urlcolor=darkblue}
-\title{Geany\LaTeX -- A \LaTeX plugin for Geany \\[1.5ex]
+\title{Geany\LaTeX{} -- A \LaTeX{} plugin for Geany \\[1.5ex]
\normalsize Version 0.4}
\author{Frank Lanitz \\ \small{\href{mailto:frank@frank.uvena.de}{frank@frank.uvena.de}}}
\date{\today}
@@ -59,11 +59,11 @@
\pagenumbering{arabic}
\section{About the plugin}
-Geany\LaTeX\ is a little plugin to improve support of \LaTeX\ on Geany.
+Geany\LaTeX{} is a little plugin to improve support of \LaTeX{} on Geany.
It implements a couple of maybe useful functions:
\begin{itemize}
- \item Wizard to create new \LaTeX\ documents in a fast and easy way
+ \item Wizard to create new \LaTeX{} documents in a fast and easy way
with a bunch of templates available
\item A front end for add labels \textbackslash label{} and
references \textbackslash ref{} and \textbackslash pageref{}
@@ -126,10 +126,10 @@
\begin{figure}[h!]
\centering{\includegraphics[height=7cm]{img/plugin_manager.png}}
- \caption{Plugin manager with Geany\LaTeX\ of Geany 0.16}
+ \caption{Plugin manager with Geany\LaTeX{} of Geany 0.16}
\end{figure}
-After Geany\LaTeX\ has been installed successfully the plugin can be
+After Geany\LaTeX{} has been installed successfully the plugin can be
loaded through Geany's plugin manager and a new sub menu in the Tools
menu will appear as well as new key bindings will be available inside
Geany's key binding interface. Inside the sub menu you will find entries
@@ -156,7 +156,7 @@
\item report
\item article
\item letter (default letter class)
- \item presentation (\LaTeX\ beamer)
+ \item presentation (\LaTeX{} beamer)
\end{itemize}
This can be set by choosing the needed entry form
@@ -186,29 +186,29 @@
\subsection{Inserting and replacing of special characters}
At replacing a selected text will be parsed and all known special
-characters will be replaced by their \TeX substitute. This can be very
+characters will be replaced by their \TeX{} substitute. This can be very
useful on importing a large amount of text into your document
-including characters like "o or \frqq. This can be also called using a
+including characters like ö or \frqq. This can be also called using a
keybinding (see \ref{kb_replacement_of_special_char}, page
\pageref{kb_replacement_of_special_char}).
\subsection{Inserting References and Labels}
An often used feature on writing of documents is adding and referring
-to labels. Geany\LaTeX\ is adding some support here for more
+to labels. Geany\LaTeX{} is adding some support here for more
comfortable adding new labels and reference offering a GUI.
\begin{figure}[h!]
\centering{\includegraphics[height=2.5cm]{img/insert_label.png}}
- \caption{Insert label dialog on Geany\LaTeX\ 0.3}
+ \caption{Insert label dialog on Geany\LaTeX{} 0.3}
\end{figure}
-After an label was added Geany\LaTeX\ is offering a dialog for
+After an label was added Geany\LaTeX{} is offering a dialog for
inserting normal references and page references to an label.
\begin{figure}[h!]
\centering{\includegraphics[height=3.5cm]{img/insert_reference.png}}
- \caption{Insert reference dialog on Geany\LaTeX\ 0.3}
+ \caption{Insert reference dialog on Geany\LaTeX{} 0.3}
\end{figure}
The suggestions inside the pull down are based on the aux file creating
@@ -224,7 +224,7 @@
and \ref{kb_insert_reference} here.
\subsection{BibTeX templates for catalogue entries}
-Geany\LaTeX\ is offering a number of often used templates for BibTeX
+Geany\LaTeX{} is offering a number of often used templates for BibTeX
catalogue entries. They can be access by the plugin submenu in Geany's
tools menu:
\begin{itemize}
@@ -262,7 +262,7 @@
\end{figure}
\subsection{Replacement of special characters}
-Geany\LaTeX\ is able to replace special characters to their there \TeX\
+Geany\LaTeX{} is able to replace special characters to their there \TeX\
substitute. This can be done in two different ways:
\begin{enumerate}
@@ -272,9 +272,9 @@
submenu inside.
\item \textbf{Bulk replace of selected text:}
A selected text will be parsed and all known special characters
- will be replaced by their \TeX substitute. This can be very useful
+ will be replaced by their \TeX{} substitute. This can be very useful
on importing a large amount of text into your document
- including characters like "o or \frqq. This function is
+ including characters like ö or \frqq. This function is
available through the Replacement of special characters
submenu on plugin's submenu of Geany's Tools menu.
\end{enumerate}
@@ -282,7 +282,7 @@
For both functions there are also shortcuts available.
\subsection{Format}
-Geany\LaTeX\ is able to help on formation of text. For doing this its
+Geany\LaTeX{} is able to help on formation of text. For doing this its
offering you to insert often use format patterns to your document.
Patterns that are currently supported are:
@@ -296,7 +296,7 @@
\item Emphasis
\end{itemize}
-Geany\LaTeX\ will add the correct format pattern to the document. If
+Geany\LaTeX{} will add the correct format pattern to the document. If
there is an selection active, that pattern will be placed around so
the selected text will be formatted with this chosen style.
@@ -331,15 +331,15 @@
\label{kb_toggling_input_replacement}
A shortcut for turning input replacement on or off. When input
replacement is activated special characters like \v{e} are
-replaced by there \TeX\ substitute like \texttt{\textbackslash
+replaced by there \TeX{} substitute like \texttt{\textbackslash
v\{e\}}.
\subsubsection{Replacement of special characters}
\label{kb_replacement_of_special_char}
A selected text will be parsed and all known special characters will be
-replaced by their \TeX substitute. This can be very useful on
+replaced by their \TeX{} substitute. This can be very useful on
importing a large amount of text into your document including
-characters like "o or \frqq.
+characters like ö or \frqq.
\subsubsection{Run insert environment dialog}
Runs a dialog for easy inserting an environment. If there is some text
@@ -418,13 +418,13 @@
(see chapter \ref{contact}).
\subsection{Testing \& bug reporting}
-Geany\LaTeX\ is tested mainly on x86 and x86\_64 architecture running
+Geany\LaTeX{} is tested mainly on x86 and x86\_64 architecture running
GNU/Linux. Also it was tested on some Windows 32 versions like XP SP3
very briefly. Since there are also other systems available, testing on other
platforms and maybe reporting of issues is highly appreciate.
\subsection{Packaging}
-Geany\LaTeX\ is part of the geany-plugins project even though there
+Geany\LaTeX{} is part of the geany-plugins project even though there
are releases independent of a major release of the project. Therefor
there are two things you can do here:
\begin{enumerate}
@@ -439,13 +439,13 @@
paragraphs that needs to be extended or rewritten because they are not
clear or topics that were missed out at all.
-The documentation is written in \LaTeX\ so all you need is to get the
+The documentation is written in \LaTeX{} so all you need is to get the
tex file from doc folder and add or update the content.
After this, just send a diff or complete file to one of the authors.
\subsection{Propaganda}
And of course, tell others of Geany and this plugin. If you like to do
-a talk about Geany\LaTeX\ and/or Geany in general, there is some code
+a talk about Geany\LaTeX{} and/or Geany in general, there is some code
available on \url{http://git.geany.org/talks/} you might can use as a
start point for preparing your own presentation. If your favourite
language is not yet available there, please feel free to do your own
@@ -464,9 +464,9 @@
\subsubsection{Sending a patch}
If you want to create a patch, please respect the license of
-Geany\LaTeX\ as well as intellectual property of third. Patches that
+Geany\LaTeX{} as well as intellectual property of third. Patches that
should be included to the default distribution must be licensed under
-the same conditions as Geany\LaTeX by the copyright owner.
+the same conditions as Geany\LaTeX{} by the copyright owner.
\section{Known issues}
At time of the the documentation was created no issue were known.
@@ -474,7 +474,7 @@
for all reported issues bug tracking system of SF at \\
\url{http://sourceforge.net/tracker/?group\_id=222729}
-\section{Recommendations to improve work with \LaTeX\ and Geany}
+\section{Recommendations to improve work with \LaTeX{} and Geany}
Geany is offering a number of nice features, that can be used to make
daily work more easy without need to write a new plugin or extend
Geany\LaTeX.
@@ -527,7 +527,7 @@
another tab in Geany's message widget.\\
\section{License}
-Geany\LaTeX\ and all its parts is distributed under the terms of the
+Geany\LaTeX{} and all its parts 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
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 586
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=586&view=rev
Author: frlan
Date: 2009-04-10 08:31:59 +0000 (Fri, 10 Apr 2009)
Log Message:
-----------
GeanyLaTeX: Enable links inside documentation
Modified Paths:
--------------
trunk/geanylatex/doc/geanylatex.tex
Modified: trunk/geanylatex/doc/geanylatex.tex
===================================================================
--- trunk/geanylatex/doc/geanylatex.tex 2009-04-07 22:43:49 UTC (rev 585)
+++ trunk/geanylatex/doc/geanylatex.tex 2009-04-10 08:31:59 UTC (rev 586)
@@ -16,14 +16,9 @@
openany,%
]{scrartcl}
\usepackage[utf8]{inputenc}
-\title{Geany\LaTeX -- A \LaTeX plugin for Geany \\[1.5ex]
- \normalsize Version 0.4}
-\author{Frank Lanitz \\ \small{frank(a)frank.uvena.de}}
-\date{\today}
\usepackage[english]{babel}
\usepackage{float}
\usepackage{setspace}
-\usepackage{url}
\usepackage{mathpazo,courier}
\usepackage{listings,color}
\usepackage{courier}
@@ -45,6 +40,17 @@
\setcounter{secnumdepth}{4} % Also numbering of \paragraph
\setcounter{tocdepth}{2} % Don't add \subsubsection to toc
+% including and configuring package for links
+\usepackage{hyperref}
+\definecolor{darkblue}{rgb}{0,0,.5}
+
+\hypersetup{pdftex=true, colorlinks=true, breaklinks=true, linkcolor=black, urlcolor=darkblue}
+
+\title{Geany\LaTeX -- A \LaTeX plugin for Geany \\[1.5ex]
+ \normalsize Version 0.4}
+\author{Frank Lanitz \\ \small{\href{mailto:frank@frank.uvena.de}{frank@frank.uvena.de}}}
+\date{\today}
+
\begin{document}
\pagenumbering{Roman}
\maketitle
@@ -79,7 +85,7 @@
For compiling the plugin yourself, you will need the GTK ($>= 2.6.0$)
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 http://www.gtk.org.
+files are available at \url{http://www.gtk.org}.
And obviously, you will need have Geany with its header files
installed (in case you are compiling the plugin on your own). If you
@@ -406,7 +412,7 @@
code archive gives a good idea of current wished features and which
are being worked on. Also you can have a look onto the feature request
tracker of geany-plugins project at
-http://sourceforge.net/tracker/?group\_id=222729 whether you find
+\url{http://sourceforge.net/tracker/?group\_id=222729} whether you find
something interesting. Of course we are also open for not in the
sources mentioned before listed items. Just contact one of the authors
(see chapter \ref{contact}).
@@ -440,11 +446,11 @@
\subsection{Propaganda}
And of course, tell others of Geany and this plugin. If you like to do
a talk about Geany\LaTeX\ and/or Geany in general, there is some code
-available on http://git.geany.org/talks/ you might can use as a
+available on \url{http://git.geany.org/talks/} you might can use as a
start point for preparing your own presentation. If your favourite
language is not yet available there, please feel free to do your own
translation and in best case send your translation to one of
-Geany's\footnote{Check for addresses http://www.geany.org}
+Geany's\footnote{Check for addresses \url{http://www.geany.org}}
development team so it can be added to archive.
@@ -466,7 +472,7 @@
At time of the the documentation was created no issue were known.
Since this is only a snapshot, you will find more recent information
for all reported issues bug tracking system of SF at \\
-http://sourceforge.net/tracker/?group\_id=222729
+\url{http://sourceforge.net/tracker/?group\_id=222729}
\section{Recommendations to improve work with \LaTeX\ and Geany}
Geany is offering a number of nice features, that can be used to make
@@ -491,34 +497,34 @@
\end{lstlisting}
\end{figure}
-A snapshot of authors' last version for LaTeX can be found on http://www.geany.org/Download/Extras
+A snapshot of authors' last version for LaTeX can be found on
+\url{http://www.geany.org/Download/Extras}
\subsection{Other useful plugins}
As mentioned before a number of useful functions were already
implemented with other plugins. Below you will find a list with the
authors's recommendations. More nice plugins can be found on Geany's
-plugins page at http//www.geany.org.
+plugins page at \url{http//www.geany.org}.
\subsubsection{GeanyLipsum}
This plugin implements an easy way for inserting Lorem Ipsum text into
a document. The length of the inserted text if configurable so the
plugin can be very helpful on testing layout.\\
-\textbf{Homepage:} http://frank.uvena.de/en/Geany/geanylipsum/
+\textbf{Homepage:} \url{http://frank.uvena.de/en/Geany/geanylipsum/}
\subsubsection{geanyVC}
When working on bigger documents an version control system like
Subversion could be useful to keep versions. GeanyVC is adding a easy
to use frontend for a number of popular version controll systems such
as git, Subversion, CVS, Bazaar or Mercural.\\
-\textbf{Homepage:} http://plugins.geany.org/geanyvc/
+\textbf{Homepage:} \url{http://plugins.geany.org/geanyvc/}
-\subsubsection{tasks}
+\subsubsection{tasks out of the addons plugins}
A plugin that is recognising \texttt{TODO} or \texttt{FIXME} tags
inside a document and allows to easy jump to these entries. This
function is similar to the \texttt{todo} package but doesn't require
recompiling of the document. Recognised tags will be inserted to
another tab in Geany's message widget.\\
-\textbf{Homepage:} Not yet available
\section{License}
Geany\LaTeX\ and all its parts is distributed under the terms of the
@@ -534,7 +540,7 @@
\label{contact}
If you found any bugs or want to provide a patch, please contact Frank
Lanitz (frank(at)geany(dot)org). Please also do so, if you got any
-questions and visiting http://frank.uvena.de/en/Geany/geanylatex/
+questions and visiting \url{http://frank.uvena.de/en/Geany/geanylatex/}
didn't help you to figure out the answer. Visiting the website is also
a good start if you want to check for any update on this plugin.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.