Skip to content

Commit

Permalink
add separate HTML file for Quick Open File Plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaphy committed Mar 15, 2015
1 parent 4131381 commit dcc18eb
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions content/quick_open_file.html
@@ -0,0 +1,30 @@
<h2>About</h2>
<p>Quick Open File offers you the possibility to reach quickly a file. Without
your mouse.</p>

<h2>Installation</h2>
<p>Download the plugin: https://github.com/samyBadjoudj/geany-qop-plugin/blob/master/qop.c</p>

<p>
Run:
<pre>
gcc -c qop.c `pkg-config --cflags --libs geany` -fPIC;gcc -shared -o qop.so qop.o;
sudo cp ./qop.so /file/of/geany/plugins/ (ex:/usr/lib/x86_64-linux-gnu/geany)
</pre>
</p>

<h2>Usage</h2>
<p> After installed successfully, load the plugin in Geany's plugin manager. Go
to Tools and click on "Quick Open File". Here a POP-UP will help you to find
your file quickly, by typing some letters that are in the name. Then select the
file by the arrows (up or down), type enter... or esc to dismiss the POP-UP
<br /> <img src="http://s1.postimg.org/69i6bssof/qop_geany.png" alt="Geany Quick
Open File Plugin" /> </p>

<h2>Requirements</h2>
<ul class="simple">
<li>GTK &gt;= 2.8.0</li>
</ul>

<h2>Contact developers</h2>
<p>Samy Badjoudj &lt;samy(dot)badjoudj(at)gmail(dot)com&gt;</p>
2 changes: 1 addition & 1 deletion gencontent.sh
Expand Up @@ -68,7 +68,7 @@ LOGDIR=${WORKDIR}"gencontent_logs/"

# plugins to exclude from the nightly re-generation via rst2html because they
# have a separate HTML page not generated from the README file
declare -a EXCLUDE_PLUGINS=( geanylatex geanysendmail geanylua )
declare -a EXCLUDE_PLUGINS=( geanylatex geanysendmail geanylua quick_open_file )

RST2HTML=$(which rst2html)
TIDY=$(which tidy)
Expand Down
2 changes: 1 addition & 1 deletion index.php
Expand Up @@ -70,7 +70,7 @@
<li><a href="https://sourceforge.net/projects/geanyeasyunicodeinput/">GeanyEasyUnicodeInput</a></li>
<li><a href="http://sourceforge.net/projects/geanyunicodetocodepoint/">GeanyUnicodeToCodepoint</a></li>
<li><a href="https://sourceforge.net/projects/geanyhighlightselectedword/">GeanyHighlightSelectedWord</a></li>
<li><a href="https://github.com/samyBadjoudj/geany-qop-plugin">Geany Quick Open File Plugin</a></li>
<li><a href="quick_open_file.html">Geany Quick Open File Plugin</a></li>
</ul>

<hr />
Expand Down

0 comments on commit dcc18eb

Please sign in to comment.