Hum yeah you'd need to build the new version manually. This requires some dependencies (*git*, *libgtk2.0-dev*, *make*, *automake*, *intltool* and *libtool*, the rest should be pulled in automatically I think), then:
```console $ git clone https://github.com/b4n/geany-plugins/ -b pairtaghighlighter/crash-on-null-tag $ ./autogen.sh --disable-all-plugins --enable-pairtaghighlighter $ make -j2 ``` and then either ```console $ make install ``` to install in the system (will overwrite your current one probably, and might require super user privileges); or a more manual approach to simply test without affecting your system, my using an alternative configuration directory and installing the plugin in it: ```console $ mkdir -p /tmp/geany-temp-conf/plugins/ $ libtool --mode=install install pairtaghighlighter/src/.libs/pairtaghighlighter.so /tmp/geany-temp-conf/plugins/ $ geany -v -c /tmp/geany-temp-conf/ ``` --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/issues/442#issuecomment-226191177
