This might be a bug that needs to be reported -- it seems that using anonymous functions in Javascript confuses the symbol parser that sorts out function names and they appear in the wrong scope in the symbols list.
Ben West wrote:
This might be a bug that needs to be reported -- it seems that using anonymous functions in Javascript confuses the symbol parser that sorts out function names and they appear in the wrong scope in the symbols list.
-- /ˈmɪstər/ /ˈdʒɛnəsɪs/@/dʒi/ /meɪl/ /dɒt/ /kɒm/ Benjamin West
Hi Ben,
It would help if you could provide an example test case in an attachment.
FWIW, I've seen some strange things with the tagmanager and JavaScript, but that was a while ago, and I think they were fixed in Geany 0.15.
Jay
well, I'm running an olderversion -- I'll need to hit the getdb repo for .15 on ibex, right?
On Mon, Feb 9, 2009 at 10:40 AM, Jason Oster parasytic@gmail.com wrote:
Ben West wrote:
This might be a bug that needs to be reported -- it seems that using anonymous functions in Javascript confuses the symbol parser that sorts out function names and they appear in the wrong scope in the symbols
list.
-- /ˈmɪstər/ /ˈdʒɛnəsɪs/@/dʒi/ /meɪl/ /dɒt/ /kɒm/ Benjamin West
Hi Ben,
It would help if you could provide an example test case in an attachment.
FWIW, I've seen some strange things with the tagmanager and JavaScript, but that was a while ago, and I think they were fixed in Geany 0.15.
Jay _______________________________________________ Geany mailing list Geany@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany
Ben West wrote:
well, I'm running an olderversion -- I'll need to hit the getdb repo for .15 on ibex, right?
I'm building Geany directly from SVN on Intrepid: http://www.geany.org/Download/SVN
The basic setup goes something like this:
$ sudo apt-get install subversion build-essential libgtk2.0-dev $ svn co https://geany.svn.sourceforge.net/svnroot/geany/trunk geany $ cd geany $ ./autogen.sh $ make $ sudo make install
autogen.sh might complain that you are missing some dependencies (which would indicate the apt-get line above is incomplete ... I'm not entirely sure what all is needed) But if all works well, you'll have a Geany 0.16 beta to test.
Let us know if you are still seeing the same JavaScript problems in the latest SVN. And then an example test case would be appropriate. ;)
Also, I don't install my SVN Geany builds into /usr/local (the example above does by default; explains the need for sudo make install). I prefer to install it into my home directory:
$ ./autogen.sh --prefix=/home/username $ make && make install
Which creates ~/bin, ~/lib, ~/include, ~/share, ~/var sub-directories.
Jay
On Mon, 09 Feb 2009 11:11:47 -0700, Jason Oster parasytic@gmail.com wrote:
Ben West wrote:
well, I'm running an olderversion -- I'll need to hit the getdb repo for .15 on ibex, right?
I'm building Geany directly from SVN on Intrepid: http://www.geany.org/Download/SVN
The basic setup goes something like this:
$ sudo apt-get install subversion build-essential libgtk2.0-dev $ svn co https://geany.svn.sourceforge.net/svnroot/geany/trunk geany $ cd geany $ ./autogen.sh $ make $ sudo make install
autogen.sh might complain that you are missing some dependencies (which would indicate the apt-get line above is incomplete ... I'm not entirely sure what all is needed) But if all works well, you'll have a Geany 0.16 beta to test.
apt knows what is necessary:
apt-get build-dep geany
will install everything you need to build Geany.
Moo, Enrico
Enrico Tröger wrote:
On Mon, 09 Feb 2009 11:11:47 -0700, Jason Oster parasytic@gmail.com wrote:
apt knows what is necessary:
apt-get build-dep geany
will install everything you need to build Geany.
Moo, Enrico
Forgot about that! Thanks Enrico. Jay