SF.net SVN: geany: [987] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Sat Nov 11 18:53:44 UTC 2006
Revision: 987
http://svn.sourceforge.net/geany/?rev=987&view=rev
Author: eht16
Date: 2006-11-11 10:53:38 -0800 (Sat, 11 Nov 2006)
Log Message:
-----------
Described new folding_horiz_line setting in filetypes.common.
Added documentation for stopping of running processes.
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/geany.docbook
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-11-11 18:51:33 UTC (rev 986)
+++ trunk/ChangeLog 2006-11-11 18:53:38 UTC (rev 987)
@@ -10,6 +10,9 @@
Added stop button(using the Run button) to cancel the execution of a
command like Run, Compile or Build.
Fixed a typo in an error message.
+ * doc/geany.docbook:
+ Described new folding_horiz_line setting in filetypes.common.
+ Added documentation for stopping of running processes.
2006-11-09 Enrico Tröger <enrico.troeger at uvena.de>
Modified: trunk/doc/geany.docbook
===================================================================
--- trunk/doc/geany.docbook 2006-11-11 18:51:33 UTC (rev 986)
+++ trunk/doc/geany.docbook 2006-11-11 18:53:38 UTC (rev 987)
@@ -5,7 +5,7 @@
<!ENTITY appversion "0.10">
<!ENTITY appurl "http://geany.uvena.de">
<!ENTITY author_mail "enrico.troeger at uvena.de">
-<!ENTITY date "October 28, 2006">
+<!ENTITY date "November 11, 2006">
<!ENTITY legal SYSTEM "geany_gpl.docbook">
<!ENTITY scikeybinding SYSTEM "scikeybinding.docbook">
]>
@@ -968,7 +968,8 @@
Execute will run the corresponding executable file, shell script or interpreted
script in a terminal window. Note that the Terminal tool path must be correctly
set in the Tools tab of the Preferences dialog - you can use any terminal
- program that runs a Bourne compatible shell.
+ program that runs a Bourne compatible shell and accept the "-e" command line
+ argument to start a command.
</para>
<para>
After your program or script has finished executing, you will be prompted to
@@ -977,6 +978,23 @@
</para>
</section>
<section>
+ <title>Stopping running processes</title>
+ <para>
+ If you started a build action (Compile, Build or Run) the Run button in the
+ toolbar becomes a stop button and you can stop the curent action. This works
+ by sending a signal to the process (and its child process(es)) to stop the
+ process. The used signal is SIGQUIT.
+ </para>
+ <para>
+ Depending on the process you started it might occur that the process cannot be
+ stopped. This can happen when the process creates more than one child process.
+ Therefore stopping any make actions is not possible because make creates child
+ processes and these child processes creates again child process. There might be
+ some other programs which cannot be stopped correctly, e.g. "Terminal" (the
+ terminal program of Xfce). Xterm is known to work properly.
+ </para>
+ </section>
+ <section>
<title>Set Includes and Arguments</title>
<para>
By default the Compile and Build commands invoke the compiler and linker with
@@ -1665,6 +1683,27 @@
<entry>folding_style=1;1;false;false</entry>
</row>
<row>
+ <entry>folding_horiz_line</entry>
+ <entry>Draw a thin horizontal line at the line where text is
+ folded. Only first argument is used.
+ <para>
+ Valid values for the first argument are:
+ <itemizedlist>
+ <listitem><para>
+ 0 - disable, do not draw a line
+ </para></listitem>
+ <listitem><para>
+ 1 - draw the line above folded text
+ </para></listitem>
+ <listitem><para>
+ 2 - draw the line below folded text
+ </para></listitem>
+ </itemizedlist>
+ </para>
+ </entry>
+ <entry>folding_horiz_line=0;0;false;false</entry>
+ </row>
+ <row>
<entry>invert_all</entry>
<entry>Whether to invert all defined colours. This is useful
if you like a dark background colour(e.g. black) and do
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list