Re: [Geany-devel] Python plugin API

2009-06-11 Thread Nick Treleaven
Hi, Sounds interesting. BTW I don't know anything much about language bindings other than C, just thought I'd ask: On Thu, 11 Jun 2009 10:00:11 -0400 Mars mfog...@gmail.com wrote: Of course, the plugin API has changed in 0.17, but this wrapper is so slim at the moment that any updates should

[Geany-devel] multi-plugin plugin - Re: Python plugin API

2009-06-12 Thread Nick Treleaven
On Fri, 12 Jun 2009 13:06:55 +0200 Jonas Haag jo...@jonashaag.de wrote: I think additionally to the plugin API there should be some interface API which has more privileges (like registering and running other plugins). As this would be probably difficult to implement I propose to add the

Re: [Geany-devel] Build System Upgrade Status

2009-06-22 Thread Nick Treleaven
On Mon, 22 Jun 2009 15:21:45 +1000 Lex Trotman ele...@gmail.com wrote: I have continued with this basis and have continued to have success, so I ask for someone with the permission to do, so please remove the current build-system branch that appears to be massively broken and to make a new

Re: [Geany-devel] geany-plugins-0.17 released

2009-07-10 Thread Nick Treleaven
On Fri, 10 Jul 2009 06:07:13 +0800 Chow Loong Jin hyper...@gmail.com wrote: Hi all, I've just uploaded the geany-plugins-0.17 gz and bz2 tarballs to http://plugins.geany.org, and updated the web pages accordingly. This marks our first combined release of the Geany plugins. Have fun with it

Re: [Geany-devel] New plugin: embrace

2009-07-23 Thread Nick Treleaven
On Fri, 17 Jul 2009 23:08:53 +0200 Andreas Mokros a...@medienpensionat.com wrote: But I rather thought about adding it to snippets instead of adding additional buttons/menu-items/hotkeys. So that you hit a hotkey and then you type a shortcut for a snippet and then the snippet wraps the

[Geany-devel] scope completion - Re: Calltip and autocomplete interaction

2009-07-27 Thread Nick Treleaven
On Sat, 25 Jul 2009 20:58:28 +0200 Enrico Tröger enrico.troe...@uvena.de wrote: - special auto-completion when using Ctrl-Space which contains not only known symbols, but also all matching words of the current document, if enabled - special '.' / '-' auto-completions I didn't know

[Geany-devel] keybinding modifiers - Re: Calltip and autocomplete interaction

2009-07-27 Thread Nick Treleaven
On Sat, 25 Jul 2009 16:16:57 +1000 Lex Trotman ele...@gmail.com wrote: We definitely need keyboards with way more than 105 keys, basic design failure :). Or we could use multi-character sequences starting with Ctrl-C or Ctrl-x or Meta or ... arrggghhh Emacs!!! ;-) Or we could use

[Geany-devel] Super modifier in keybindings - Re: Strange Geany behavior

2009-07-30 Thread Nick Treleaven
On Thu, 30 Jul 2009 20:05:01 +1000 Lex Trotman ele...@gmail.com wrote: Hi, I have a really strange problem with Geany. Using Geany 0.17 standard install on open suse 11.0, logged in as a different user to where I was developing Geany so there is no leakage from development versions.

Re: [Geany-devel] Patch for Markdown syntax support.

2009-07-30 Thread Nick Treleaven
On Sun, 26 Jul 2009 00:33:08 -0700 Jon Strait jstr...@moonloop.net wrote: I've created a basic Scintilla lexer for the Markdown formatting syntax along with Geany syntax and tag support. It doesn't do everything; indented code blocks and embedded HTML aren't highlighted, but it's already

Re: [Geany-devel] Patch for Markdown syntax support.

2009-07-30 Thread Nick Treleaven
On Thu, 30 Jul 2009 12:29:54 +0100 Nick Treleaven nick.trelea...@btinternet.com wrote: Patch against build 4026 with -p5 from Geany's top build directory. Thanks, applied in SVN. Just remembered, also we need a filetypes.markdown file so the user can easily customize the syntax highlighting

Re: [Geany-devel] Calltip and autocomplete interaction

2009-08-11 Thread Nick Treleaven
On Thu, 06 Aug 2009 22:34:05 +0200 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: This reshows calltips when you don't want them: 1. Press the down arrow when you're in a calltip until you're outside the argument list. 2. Type a character - the calltip is reshown. Regards,

Re: [Geany-devel] Super modifier in keybindings - Re: Strange Geany behavior

2009-08-11 Thread Nick Treleaven
Hi, Sorry for the delay. On Fri, 31 Jul 2009 12:07:55 +1000 Lex Trotman ele...@gmail.com wrote: Ok, it may be a GTK bug, I'll describe whats going on you can decide and tell GTK, I've had zero success dealing with them in the past. Geany keybindings are captured by

Re: [Geany-devel] Super modifier in keybindings - Re: Strange Geany behavior

2009-08-11 Thread Nick Treleaven
On Tue, 11 Aug 2009 12:14:51 +0100 Nick Treleaven nick.trelea...@btinternet.com wrote: The reason you can't set super as a modifier may be that the default modifier mask is set to block it. I don't know what sets it, mine is 1c0d which allows super at 400 and thats the value when

Re: [Geany-devel] Super modifier in keybindings - Re: Strange Geany behavior

2009-08-11 Thread Nick Treleaven
On Tue, 11 Aug 2009 23:37:44 +1000 Lex Trotman ele...@gmail.com wrote: in GTK.  It seems to me that keybindings don't actually need to be set as accelerators since on_key_press_event catches them all first, and that would work around the GTK problem. Yes, but this provides handy

[Geany-devel] Resetting menu accels - Re: Super modifier in keybindings - Re: Strange Geany behavior

2009-08-12 Thread Nick Treleaven
On Wed, 12 Aug 2009 13:48:21 +1000 Lex Trotman ele...@gmail.com wrote: I've attached a simple program which demonstrates the super modifier problem, so the good news is, it isn't a Geany problem. I will raise a GTK bug. OK. The bad? news is that the program also demonstrates that

Re: [Geany-devel] Resetting menu accels - Re: Super modifier in keybindings - Re: Strange Geany behavior

2009-08-12 Thread Nick Treleaven
On Wed, 12 Aug 2009 21:48:08 +1000 Lex Trotman ele...@gmail.com wrote: But this might make the whole keybinding code much simpler :-) Not sure, there are keybindings that don't have a menu item associated with it. It just needs to be some widget that the signal can be delivered to.

Re: [Geany-devel] Resetting menu accels - Re: Super modifier in keybindings - Re: Strange Geany behavior

2009-08-13 Thread Nick Treleaven
On Thu, 13 Aug 2009 08:32:48 +1000 Lex Trotman ele...@gmail.com wrote: I hope that you havn't violated the good GUI guidelines by having functionality that is only available via keybindings and not by menu ;-) We have. Probably we could/should add some matching menu items, and IIUC

Re: [Geany-devel] SF.net SVN: geany-plugins:[895] trunk/geany-plugins/pretty-printer/src

2009-08-14 Thread Nick Treleaven
On Fri, 14 Aug 2009 12:24:41 +0200 Cédric Tabin tabin.ced...@gmail.com wrote: Thansk for your advices. As I never developped very much in C with header files I don't know what's the best... I just see in another plugin that it was done like that and thought that it was the right way. However I

Re: [Geany-devel] sciwrappers.h not compilable ?

2009-08-17 Thread Nick Treleaven
On Sun, 16 Aug 2009 22:28:45 +0200 Enrico Tröger enrico.troe...@uvena.de wrote: #ifndef GEANY_H #warning geany.h needs to be included before this file #endif in sciwrappers.h for example. We could do this but to get any sense of it we would do this in all public header files. I also

[Geany-devel] Menu items for corresponding keybindings - Re: Resetting menu accels

2009-08-18 Thread Nick Treleaven
On Mon, 17 Aug 2009 23:11:43 +0200 Enrico Tröger enrico.troe...@uvena.de wrote: Maybe we could group the 'insert date', 'insert include...' items into a new submenu, so we would save one toplevel menu item and then we could also put various more menu items into this new submenu for

Re: [Geany-devel] Build-system merge

2009-08-19 Thread Nick Treleaven
On Wed, 19 Aug 2009 09:54:42 +1000 Lex Trotman ele...@gmail.com wrote: Now merged with 4110. Thanks. Can we make a schedule for doing the re-integrate as it takes time to keep merging. Yes, I will merge the branch in the next few days, and so long as I know how to resolve conflicts with

Re: [Geany-devel] Menu items for corresponding keybindings - Re: Resetting menu accels

2009-08-20 Thread Nick Treleaven
On Tue, 18 Aug 2009 19:55:51 +0200 Enrico Tröger enrico.troe...@uvena.de wrote: Maybe we could group the 'insert date', 'insert include...' items into a new submenu, so we would save one toplevel menu item and then we could also put various more menu items into this new submenu for

Re: [Geany-devel] Build-system merge

2009-08-20 Thread Nick Treleaven
On Thu, 20 Aug 2009 20:32:17 +1000 Lex Trotman ele...@gmail.com wrote: Ok, I am sure you know all this but I have been told that SVN is *very* picky about merge and re-integrate. Your branch working directory should be a *clean* checkout of the branch, merge with trunk and re-commit to the

Re: [Geany-devel] Patch for Markdown syntax support.

2009-08-25 Thread Nick Treleaven
On Mon, 24 Aug 2009 16:46:07 +0100 Nick Treleaven nick.trelea...@btinternet.com wrote: P.S. Thanks also for the filetypes file, I'll commit that soon. Now committed, thanks. Regards, Nick ___ Geany-devel mailing list Geany-devel@uvena.de http

Re: [Geany-devel] New plugin : Code navigation

2009-08-25 Thread Nick Treleaven
On Mon, 24 Aug 2009 21:29:18 +0200 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: Attached is the patch to fix compilation (I didn't commit myself as I'm neither author nor maintainer). Looks good (I'll leave it for him to commit). BTW, Lionel, you shouldn't translate each

Re: [Geany-devel] ANN: Configurable build beta in trunk

2009-08-26 Thread Nick Treleaven
On Wed, 26 Aug 2009 15:09:44 +1000 Lex Trotman ele...@gmail.com wrote: I wonder what's about the variable i in the outer for loop, is it initialised at all? No its not initialised, but it shouldn't be a variable i, S/B 1, see attached patch. Removes the now unused variable too. Applied

Re: [Geany-devel] porting the txt2tags syntax on Geany

2009-08-27 Thread Nick Treleaven
On Wed, 26 Aug 2009 21:48:09 + (GMT) Forgeot Eric eforg...@yahoo.fr wrote: for example in markdown for a header you can surround it by # like this : ## header 2 ## On txt2tags it's == header 2 ==. So I replaced this in the source code of LexMarkdown.cxx and recompiled geany, but it's

Re: [Geany-devel] More intelligent 'remove trailing spaces' - Re: Strip trailing blank lines (patch included)

2009-09-03 Thread Nick Treleaven
On Tue, 1 Sep 2009 20:58:45 +0200 Enrico Tröger enrico.troe...@uvena.de wrote: I think this is useful as the user doesn't need to re-indent the blank line before typing on it. Hmm, I usually use the Up cursor key to jump to the previous line and then press Enter :). Yes, but sometimes the

[Geany-devel] geany-plugins release GTK version / build fixes / NEWS

2009-09-03 Thread Nick Treleaven
Hi, Just wondering about some things for plugins in the geany-plugins release. (This doesn't apply for any plugins in SVN that aren't part of the release). Should there be a common minimum version for GTK/GLib? I think this might be a good idea. Also for small obvious fixes to plugins (e.g. to

Re: [Geany-devel] interactive typeahead seach for the sidebar

2009-09-03 Thread Nick Treleaven
On Sun, 23 Aug 2009 16:05:01 +0200 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: New patch, a little cleaner (less code duplication), but no functional change over the v3 one. Thanks applied in SVN. It didn't compile at first (at least with warnings turned on), had to make a

Re: [Geany-devel] Creating ~/.config/geany/filedefs/filetypes.* files - Re: ANN: Configurable build beta in trunk

2009-09-03 Thread Nick Treleaven
On Thu, 3 Sep 2009 13:44:29 +1000 Lex Trotman ele...@gmail.com wrote: SVN version should now only save config files when needed. I now vaguely remember knowing about the problem, certainly I had made the function that reads the build commands dialog return a bool true if anything changed.

Re: [Geany-devel] Localization of plugin names in plugin manager

2009-09-04 Thread Nick Treleaven
On Thu, 03 Sep 2009 22:44:07 +0400 Eugene Arshinov earshi...@gmail.com wrote: The other question is how to implement this with the PLUGIN_SET_INFO macro so main_locale_init() is called correctly (and only when necessary?) for all plugins. Function plugin_set_info() is called exactly

Re: [Geany-devel] interactive typeahead seach for the sidebar

2009-09-04 Thread Nick Treleaven
On Fri, 04 Sep 2009 13:04:42 +0200 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: Take this one, it just changes a now inaccurate/incorrect comment. Thanks, applied. Also removed now-unnecessary pos variable. BTW, we don't (normally) use a big indent for overflowing lines, just one

Re: [Geany-devel] txt2tags tagmanager patch

2009-09-07 Thread Nick Treleaven
On Sun, 6 Sep 2009 22:57:24 +0200 Enrico Tröger enrico.troe...@uvena.de wrote: One question: in txt2tags,c line 89, there is a check ... if (line[0] == '°') ... which doesn't make much sense as you check line[0] which is one byte long (8bit) but the character you want to check is a

Re: [Geany-devel] Geany Plugins 0.18

2009-09-07 Thread Nick Treleaven
On Sun, 6 Sep 2009 14:44:25 +0200 Enrico Tröger enrico.troe...@uvena.de wrote: Frank and I were discussing on #geany the other day about whether we should have an 0.18 release of geany-plugins soon (or wait for the next Geany). From what I see, there are some significant changes which would

Re: [Geany-devel] Geany Plugins 0.18

2009-09-07 Thread Nick Treleaven
On Mon, 7 Sep 2009 12:51:25 +0100 Nick Treleaven nick.trelea...@btinternet.com wrote: Could you open a new branch for the 0.18 release, then I could apply Eugene's whitespace patch to trunk which will require Geany 0.19 as it depends on some API additions. I think the branch will have

Re: [Geany-devel] On coding style

2009-09-08 Thread Nick Treleaven
On Tue, 8 Sep 2009 09:54:11 +1000 Lex Trotman ele...@gmail.com wrote: fix_alignment script is it safe to just run this every time pre-commit? In the commit message IIRC I mentioned this is 'work in progress', I probably need to make some changes before this is reliable for all of

Re: [Geany-devel] More intelligent 'remove trailing spaces' - Re: Strip trailing blank lines (patch included)

2009-09-10 Thread Nick Treleaven
On Thu, 03 Sep 2009 22:44:37 +0400 Eugene Arshinov earshi...@gmail.com wrote: I think this is useful as the user doesn't need to re-indent the blank line before typing on it. Hmm, I usually use the Up cursor key to jump to the previous line and then press Enter :).

Re: [Geany-devel] Plugin Keybindings (default values)

2009-09-10 Thread Nick Treleaven
On Wed, 9 Sep 2009 14:04:05 +0300 Yura Siamashka yura...@gmail.com wrote: How can I assign default shortcuts to actions like toggle breakpoint, next command etc so user will not have to assign a lot of keys himself. Just set the key and mods when calling keybindings_set_item(). (Of course if

Re: [Geany-devel] geany-plugins release GTK version / build fixes / NEWS

2009-09-10 Thread Nick Treleaven
On Mon, 7 Sep 2009 23:48:34 +0200 Enrico Tröger enrico.troe...@uvena.de wrote: IMHO, the user *should* not see a big difference in the dependencies of both suites. At least not as long as we can easily prevent it. I think for the combined plugins release, the most easy and intuitive way for

Re: [Geany-devel] Localization of plugin names in plugin manager

2009-09-10 Thread Nick Treleaven
On Sun, 6 Sep 2009 15:49:03 +0200 Enrico Tröger enrico.troe...@uvena.de wrote: Just to say, I discovered this issue when debugging modified addons plugin. I wondered why it disappeared from the list after I activated and deactivated it. After an hour of thinking and debugging I noticed that

Re: [Geany-devel] abc tagmanager patch

2009-09-12 Thread Nick Treleaven
On Mon, 7 Sep 2009 17:17:39 +1000 Lex Trotman ele...@gmail.com wrote: I submit a new patch for including a popular format among musicians: ABC notation. ... I don't want to be the killjoy, but I don't want to add any arbitrary filetypes. We should limit the list of filetypes to those which

Re: [Geany-devel] COBOL syntax highlighting and filetype support

2009-09-12 Thread Nick Treleaven
On Thu, 10 Sep 2009 18:57:11 -0400 Seth Keiper erst...@gmail.com wrote: Have you seen the HACKING file? Yes, this is where I got the info to add the COBOL lexr OK, it mentions about checking the Scintilla project first, but after several recent patches I just added a clearer warning. A

Re: [Geany-devel] Plugin Keybindings (default values)

2009-09-12 Thread Nick Treleaven
On Wed, 9 Sep 2009 14:04:05 +0300 Yura Siamashka yura...@gmail.com wrote: Also please add sci_set_marker_at_line and sci_is_marker_set_at_line to plugin API. I will need them to show breakpoints and current line when debugging. Committed, thanks. I split sci_set_marker_at_line into

Re: [Geany-devel] More intelligent 'remove trailing spaces'

2009-09-13 Thread Nick Treleaven
On Sun, 13 Sep 2009 00:30:51 +0400 Eugene Arshinov earshi...@gmail.com wrote: Pressing Up, End and Enter every time is so annoying... For example, to add a simple C/C++ code block (I prefer KR style, opening brace on the same line) I have to press space{enter}upendenter

Re: [Geany-devel] [PATCH] reenable save after file changed on disk

2009-09-13 Thread Nick Treleaven
On Tue, 01 Sep 2009 22:58:10 +0200 Colomban Wendling ban-ubu...@club-internet.fr wrote: When i changed a file in Geany and made e.g. a git checkout or an other change with the file on disk, Geany asks me to reload(thats great so far). After i choose no, as i want to keep my changes i made in

[Geany-devel] Cut line - Re: some features i would love to see optional or standard

2009-09-14 Thread Nick Treleaven
On Sun, 13 Sep 2009 07:15:12 -0700 (PDT) ccss net occssn...@yahoo.com wrote: when using ctrl-k to cut an entire line of text in nano it will continue adding to the buffer if the cursor hasnt moved and another ctrl-k is pressed. such as selecting and cuting multiple lines of text. in geany

[Geany-devel] Cut line - Re: some features i would love to see optional or standard

2009-09-14 Thread Nick Treleaven
On Mon, 14 Sep 2009 16:04:09 +0200 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: I think that would be better as the default behavior (and hence being in the core). No I don't think so. IMHO the default functionality should work analog to the normal cut command.

[Geany-devel] avoiding confusion - Re: Cut line - Re: some features i would love to see optional or standard

2009-09-15 Thread Nick Treleaven
On Mon, 14 Sep 2009 16:50:29 +0200 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: What if you cut something then decide you just want to delete it and cut lines starting at the cursor? Then you'd be confused when pasting with extra lines at the start that you might not see

Re: [Geany-devel] COBOL syntax highlighting and filetype support

2009-09-15 Thread Nick Treleaven
On Tue, 15 Sep 2009 11:26:29 +1000 Lex Trotman ele...@gmail.com wrote: Have you submitted a patch that successfully integrates either your own or the scintilla lexer into geany? Including the filetype code a filetypes.??? file (what is the extension for cobol?) For most filetypes the conf

Re: [Geany-devel] Reflow long lines

2009-09-22 Thread Nick Treleaven
On Tue, 22 Sep 2009 22:32:50 +1000 Lex Trotman ele...@gmail.com wrote: BUT, I don't know a case when it's useful to set line break column and long-line column to different values. As to me, I'd prefer this to be one setting. Me too. Maybe that's the reason why I never recognized this

[Geany-devel] build API - Re: SF.net SVN: geany:[4367] trunk

2009-10-27 Thread Nick Treleaven
On Tue, 27 Oct 2009 07:48:27 +1100 Lex Trotman ele...@gmail.com wrote: The documented functions in build.h were intended to be added to the API after discussions with Enrico in the past. Not sure why they weren't. What needs to be done to do that? Sorry I hadn't raised this before.

Re: [Geany-devel] ctrl+tab switching between tabs

2009-10-29 Thread Nick Treleaven
On Thu, 29 Oct 2009 11:41:55 +0100 Frank Lanitz fr...@frank.uvena.de wrote: Implement Most-Recently-Used document switching when pressing Ctrl-Tab keybinding. (It's probably not perfect, but works OK). I wanted to know whether this is a key binding that GTK+ supports natively,

Re: [Geany-devel] build API - Re: SF.net SVN: geany:[4367] trunk

2009-10-29 Thread Nick Treleaven
On Thu, 29 Oct 2009 08:56:42 +1100 Lex Trotman ele...@gmail.com wrote: Not breaking the ABI is a goal of any future plugin API extensions, so we don't have to rebuild all plugins so often. Excellent goal. In which case you might need to add that plugins should not save and restore

Re: [Geany-devel] Geany Plugins 0.18 released!

2009-10-30 Thread Nick Treleaven
On Wed, 28 Oct 2009 21:06:28 +0800 Chow Loong Jin hyper...@gmail.com wrote: Below is a shortlog of all the changes since 0.17.1:- Hmm, it's a bit ugly and long, perhaps the NEWS file would be better. Only I'm not sure if all committers updated it... I fully agree. However, the NEWS

[Geany-devel] g-p release from trunk - Re: Geany Plugins 0.18 released!

2009-10-30 Thread Nick Treleaven
On Fri, 30 Oct 2009 13:51:18 +0100 Frank Lanitz fr...@frank.uvena.de wrote: I think things like this are caused by the confusion with merging stuff here. I suggest to really use trunk in future as basis for a branch whenever a new release should be done. Only if the release is to be made at

Re: [Geany-devel] ctrl+tab switching between tabs

2009-10-30 Thread Nick Treleaven
On Thu, 29 Oct 2009 20:27:51 +0100 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: Wow, nice feature! I really missed that (but I rather had a go at doing while-typing search for achieving a way to quickly navigate through tabs ;) ). Glad you like it ;-) I wonder if it's also

[Geany-devel] geanygdb - Re: Geany Plugins 0.18 released!

2009-11-02 Thread Nick Treleaven
On Sat, 31 Oct 2009 11:48:33 +0100 Dominic Hopf dma...@googlemail.com wrote: AFAICT these changes don't seem to be in the 0.18 release: http://geany-plugins.svn.sourceforge.net/viewvc/geany-plugins/branches/geany-plugins/geany-plugins-0.18/geanygdb/?pathrev=1043 Thanks Frank.

Re: [Geany-devel] build API - Re: SF.net SVN: geany:[4367] trunk

2009-11-04 Thread Nick Treleaven
On Fri, 30 Oct 2009 09:03:37 +1100 Lex Trotman ele...@gmail.com wrote: I was actually thinking about a plugin that tried to save and restore structure contents so it could restore values after running or save them to file for restore next time.  The struct might be allocated prior to the

Re: [Geany-devel] geanygdb - Re: Geany Plugins 0.18 released!

2009-11-04 Thread Nick Treleaven
On Mon, 02 Nov 2009 21:29:40 +0100 Dominic Hopf dma...@googlemail.com wrote: AFAICT these changes don't seem to be in the 0.18 release: http://geany-plugins.svn.sourceforge.net/viewvc/geany-plugins/branches/geany-plugins/geany-plugins-0.18/geanygdb/?pathrev=1043 Thanks Frank.

[Geany-devel] Color schemes menu - Re: SF.net SVN: geany:[4395] trunk

2009-11-04 Thread Nick Treleaven
Hi, On Wed, 04 Nov 2009 12:36:56 + nt...@users.sourceforge.net wrote: Revision: 4395 http://geany.svn.sourceforge.net/geany/?rev=4395view=rev Author: ntrel Date: 2009-11-04 12:36:56 + (Wed, 04 Nov 2009) Log Message: --- Add 'View-Editor-Color Schemes'

Re: [Geany-devel] Using Geany for VHDL / Verilog

2009-11-20 Thread Nick Treleaven
On Fri, 20 Nov 2009 11:45:16 + Kelvin Gardiner kel...@mbmn.net wrote: What I meant by symbols was the symbols tab at the the right-hand side of the window. When editing a C file this list functions, variables etc. I'd like similar functionality for VHDL and Verilog. If you provide a

Re: [Geany-devel] Using Geany for VHDL / Verilog

2009-11-24 Thread Nick Treleaven
parser has been updated quite a bit but this has made it 3 times bigger. Not sure whether we want to upgrade to that. Nick Treleaven wrote: On Fri, 20 Nov 2009 11:45:16 + Kelvin Gardiner kel...@mbmn.net wrote: What I meant by symbols was the symbols tab at the the right-hand side

Re: [Geany-devel] Using Geany for VHDL / Verilog

2009-12-07 Thread Nick Treleaven
On Mon, 7 Dec 2009 17:57:18 + Nick Treleaven nick.trelea...@btinternet.com wrote: I've attached a number of patches and new files to add Verilog syntax highlighting and symbols. I've taken the Verilog lexer directly from Scintilla. Thanks for the patch sorry for the slow response

Re: [Geany-devel] [Bug] When saving a modified file, a new empty line is added

2010-01-18 Thread Nick Treleaven
On Mon, 14 Dec 2009 14:23:09 +0100 Colomban Wendling ban-ubu...@club-internet.fr wrote: I still don't see what's the problem with simply deactiviting the feature if it causes troubles for you. The problem is the *default value*. Each time a PHP developer installs Geany, he must keep in

Re: [Geany-devel] Moving XML/HTML specific stuff into plugin

2010-01-18 Thread Nick Treleaven
On Mon, 18 Jan 2010 09:28:25 +1100 Lex Trotman ele...@gmail.com wrote: During my work on moving some LaTeX specific functions from Geany core to geanyLaTeX plugin I recognized some code which is pretty much HTML/XML specific and might would make sense to move also into a plugin. On first step

Re: [Geany-devel] Build system status update

2010-01-22 Thread Nick Treleaven
On Mon, 18 Jan 2010 09:52:49 +1100 Lex Trotman ele...@gmail.com wrote: Having had time to think (always dangerous) I consider that I have been implementing the build system modifications in the wrong way. Instead I am going to have a look at re-implementing it in a more open orthogonal manner

Re: [Geany-devel] Patch to fix API usage of GeanyDoc

2010-01-28 Thread Nick Treleaven
On Wed, 27 Jan 2010 10:40:38 +0200 a.beloboro...@viscomp.bg a.beloboro...@viscomp.bg wrote: I found an error in GeanyLua when compiling geany plugins.You can see error at http://nopaste.geany.org/p/m66352bc5 . Steps to reproduce : 1. cd geany-plugins/ 2. ./autogen.sh 3. make - j 2 OK,

[Geany-devel] geanylua svn build failure - Re: Patch to fix API usage of GeanyDoc

2010-01-28 Thread Nick Treleaven
On Thu, 28 Jan 2010 13:44:18 + Nick Treleaven nick.trelea...@btinternet.com wrote: I found an error in GeanyLua when compiling geany plugins.You can see error at http://nopaste.geany.org/p/m66352bc5 . Steps to reproduce : 1. cd geany-plugins/ 2. ./autogen.sh 3. make - j 2 OK

Re: [Geany-devel] developers help

2010-01-30 Thread Nick Treleaven
Hi, On Fri, 29 Jan 2010 20:05:26 +0600 Alexander Kuleshov kuleshovm...@gmail.com wrote: Hello. My name is Alexander. I am a programmer P / C + +, python, etc. Would like to help the project. What should I do? Can I make a function from the WishList? What do I do? Dominic is right, especially

Re: [Geany-devel] Build system status update

2010-02-01 Thread Nick Treleaven
On Tue, 26 Jan 2010 17:00:48 +1100 Lex Trotman ele...@gmail.com wrote: Just wondering how much work this would be - would this be a full reworking? In principle no, the general functionality will be the same, but in the details (the devil :) probably bits of everything in build.c are

Re: [Geany-devel] Build system branch 2.0

2010-02-11 Thread Nick Treleaven
On Thu, 11 Feb 2010 05:53:59 +0100 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: But the limited build settings it had before committing the branch basically made it a text editor, not an IDE. I now more or less depend on the new capabilities of the build settings, so if you

Re: [Geany-devel] Build system branch 2.0

2010-02-15 Thread Nick Treleaven
On Mon, 15 Feb 2010 13:02:05 + Nick Treleaven nick.trelea...@btinternet.com wrote: Since any command can be run by the build menu, it can be a long-running command, so why not allow a competent user to decide that it is safe to stop it if its going wrong? Sorry, my comment about

Re: [Geany-devel] Project-specific long line marker position

2010-02-15 Thread Nick Treleaven
On Thu, 11 Feb 2010 22:58:24 +0300 Eugene Arshinov earshi...@gmail.com wrote: I usually limit line length by 80 in my own projects, but in Geany 100 symbols is recommended. If the long line marker position preference was project-specific, I would not need to change it in the Preferences

[Geany-devel] old custom filetypes branch - Re: Separate color schemes and filetype definitions

2010-02-17 Thread Nick Treleaven
On Tue, 16 Feb 2010 21:28:24 +0100 Dominic Hopf dma...@googlemail.com wrote: The filetype definition system is under rework at the present. I think some of the problems you mentioned may already be solved there. It is developed in a separate branch, but you can follow the development if you

Re: [Geany-devel] Separate color schemes and filetype definitions

2010-02-17 Thread Nick Treleaven
On Tue, 16 Feb 2010 14:03:48 +0100 Jonas H. jo...@lophus.org wrote: I have a suggestion regarding color schemes/filetype definitions. Currently, filetype definitions (keywords, compile-commands, ...) and syntax highlighting color schemes aren't separate, it's one file. This results in

[Geany-devel] geany.txt - Re: [ANNOUNCEMENT] website rework

2010-02-17 Thread Nick Treleaven
On Tue, 16 Feb 2010 15:22:06 +1100 Lex Trotman ele...@gmail.com wrote: The only other comment is that if someone is only doing documentation, they really only need to check out trunk/doc/geany.txt not the whole SVN. Yes, but then they need to know how to generate the HTML to at least check the

Re: [Geany-devel] Creating a new window in Geany plugin

2010-02-18 Thread Nick Treleaven
On Wed, 17 Feb 2010 19:58:38 +0100 Lai Hoang Nam laihoang...@gmail.com wrote: I'm developping a plugin for Geany and the objective is to create a window to display something (some texts...). However, the difficulty is that I don't know how to insert a new window into Geany (ex: a text view

[Geany-devel] build plugin - Re: Build system branch 2.0

2010-02-24 Thread Nick Treleaven
On Sun, 21 Feb 2010 15:03:01 +0100 Enrico Tröger enrico.troe...@uvena.de wrote: As I see it there area couple of ways of implementing your suggestion: 1. a basic build system in the core and the advanced one in the plugin, or 2. the two plugins approach 1. has the advantage that the

Re: [Geany-devel] SF.net SVN: geany:[4684] trunk

2010-02-24 Thread Nick Treleaven
On Sun, 21 Feb 2010 13:30:31 + eh...@users.sourceforge.net wrote: Replace tabs by spaces. Modified Paths: -- trunk/ChangeLog trunk/plugins/genapi.py Just wondered why? ;-) Regards, Nick ___ Geany-devel mailing list

[Geany-devel] multiple instance save-settings - Re: Race condition when saving geany.conf

2010-02-26 Thread Nick Treleaven
On Wed, 24 Feb 2010 12:04:20 +0300 Eugene Arshinov earshi...@gmail.com wrote: Hi all. When several instances of Geany quit in the same time, there is a high possibility of a conflict. I can reproduce it easily on my machine, using either trunk or SM version. To reproduce: open three

Re: [Geany-devel] multiple instance save-settings - Re: Race condition when saving geany.conf

2010-03-01 Thread Nick Treleaven
On Sat, 27 Feb 2010 09:05:12 +1100 Lex Trotman ele...@gmail.com wrote: To be easy to implement, perhaps maybe only the first/main instance should save settings. We could have a Tools-Save Config menu item enabled for the first instance to allow the user to restart other instances with the

[Geany-devel] dialog button text - Re: [Patch] - Fix keyboard accelerator on Resave Missing File dialog.

2010-03-02 Thread Nick Treleaven
On Tue, 2 Mar 2010 13:07:55 +1100 Lex Trotman ele...@gmail.com wrote: Well, since the question is Try to resave the file? I'd suggest that GTK_STOCK_YES and GTK_STOCK_NO be used since they are a more direct answer to the question than apply/cancel are. And that makes the mnemonics different.

Re: [Geany-devel] Improving PHP parser

2010-03-05 Thread Nick Treleaven
On Thu, 4 Mar 2010 05:28:32 -0800 (PST) Can Koy can...@ymail.com wrote: Anybody working on improving PHP parser in tagmanager? If not, I intend to have a look at it this weekend. Primary objective is to add calltips. I could use some example code or any other pointer about regex callbacks in

Re: [Geany-devel] multiple instance save-settings - Re: Race condition when saving geany.conf

2010-03-05 Thread Nick Treleaven
On Tue, 02 Mar 2010 18:50:28 +0100 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: (If a second instance of geany is run without passing filenames to the first, -i is implied). I really like this idea. It is simple to understand, rather convenient and uniform with the

Re: [Geany-devel] [Patch] - Improve PHP parser (call tips)

2010-03-08 Thread Nick Treleaven
On Sun, 7 Mar 2010 19:20:37 +0100 Enrico Tröger enrico.troe...@uvena.de wrote: You put a weird pattern: [public|protected|private|static]* If you wanted to group, you should use () I didn't want to group, we don't need to know the actual modifier, we just want to allow only this subset.

[Geany-devel] POSIX system/GNU regex engine for find replace in trunk - Re: SF.net SVN: geany:[4746] trunk

2010-03-09 Thread Nick Treleaven
Hi, I've switched the regex engine for the find replace dialog 'Use regular expressions' option. This is (potentially) more powerful and fixes some issues (see below). Please test and give feedback, thanks. On Tue, 09 Mar 2010 16:56:05 + nt...@users.sourceforge.net wrote: Revision: 4746

Re: [Geany-devel] [Patch] Avoid crash when opening project properties dialog

2010-03-09 Thread Nick Treleaven
On Tue, 9 Mar 2010 19:48:39 +1100 Lex Trotman ele...@gmail.com wrote: ft is NULL there, which looks like a valid value, since ft is tested for NULL explicitly in line 1878. So I propose the following patch. ... Thanks, one more change is needed, ft isn't initialised to NULL so on my

Re: [Geany-devel] Project-specific long line marker position

2010-03-10 Thread Nick Treleaven
On Wed, 24 Feb 2010 13:08:24 + Nick Treleaven nick.trelea...@btinternet.com wrote: ... I had to tamper GeanyEditor struct a bit. It seems to cause no troubles for plugins as GeanyEditor is not exported. Fields 'long_line_*' are renamed to corresponding 'long_line_global_*' to emphasize

Re: [Geany-devel] Build system 2.0, default configuration dialog

2010-03-10 Thread Nick Treleaven
On Thu, 4 Mar 2010 10:52:55 +1100 Lex Trotman ele...@gmail.com wrote: The current trunk arrangement has one major problem though, the project settings and the non-project settings are configured in separate dialogs, having settings that interact in different places is very poor user interface

[Geany-devel] geany-plugins compat - Re: plugin dev question

2010-03-11 Thread Nick Treleaven
On Wed, 10 Mar 2010 20:13:59 -0600 Chuck Tilbury chucktilb...@gmail.com wrote: I had another problem with building the add-ons, though. After taking care of the dependencies given by ./configure, I tried to get and build the geany-plugins-0.18 files and many of the plugins refused to build

Re: [Geany-devel] Build command labels as buttons

2010-03-12 Thread Nick Treleaven
On Thu, 11 Mar 2010 20:29:53 +0100 Enrico Tröger enrico.troe...@uvena.de wrote: I've made a screenshot (attached) of the Build Commands dialog using buttons for the menu item labels instead of text entries. This is because: 1. It makes it clear that menu labels don't normally need to be

Re: [Geany-devel] [PATCH] Fix frames' padding in the prefs dialog

2010-03-15 Thread Nick Treleaven
On Fri, 12 Mar 2010 00:23:08 +0300 Eugene Arshinov earshi...@gmail.com wrote: When I said the frames being inconsistent, I meant that * some frames have zero border width while most of them have border width set to 5; * sometimes this border width is applied to each frame contained

Re: [Geany-devel] geany bug saving execute commands - filetype none

2010-03-15 Thread Nick Treleaven
Sorry for the noise, accidental Ctrl-Enter. On Tue, 16 Mar 2010 00:06:58 +1100 Lex Trotman ele...@gmail.com wrote: Probably we can fix this to return none instead of common and adjust all calling code to still work. Or just store it in filetypes.common, doesn't matter so long as we

[Geany-devel] parse local variables - Re: [PATCH] Report lambdas as functions in Python tagmanager

2010-03-17 Thread Nick Treleaven
On Tue, 16 Mar 2010 19:07:05 +0100 Thomas Martitz thomas.mart...@student.htw-berlin.de wrote: I haven't tried it but do we really want this? Aren't lambda functions supposed to be short and limited to local scope? We don't parse other local things other than nested functions, but they can

Re: [Geany-devel] [PATCH] Report lambdas as functions in Python tagmanager

2010-03-17 Thread Nick Treleaven
On Tue, 16 Mar 2010 19:23:32 +0100 Colomban Wendling lists@herbesfolles.org wrote: Here's a small patch that adds support for lambdas in the Python tagmanager. What it does it report Python's lambdas as functions (with arguments) rather than as variables. Nested lambda are supported

Re: [Geany-devel] Waf -O0 set - Re: SF.net SVN: geany:[4763] trunk

2010-03-17 Thread Nick Treleaven
On Tue, 16 Mar 2010 21:24:13 +0100 Enrico Tröger enrico.troe...@uvena.de wrote: Do we really want to force -O0 for wscript SVN builds? Nah, that was a funny mistake :). I committed the other changes of the revision 4763 and while waiting for the commit to finish, I added -O0 to test

[Geany-devel] SVN po.de Geany update - Re: (no subject)

2010-03-18 Thread Nick Treleaven
On Tue, 16 Mar 2010 23:17:00 +0100 Michael Spahn any...@fedoraproject.org wrote: Small SVN po.de Geany update. Have fun, maybe some better translations. Regards, Michael Thanks. But try sending them to Frank as he's the translation maintainer. Regards, Nick

[Geany-devel] GObject: Use -priv instead GET_PRIV() macros - Re: SF.net SVN: geany:[4791] trunk

2010-03-30 Thread Nick Treleaven
Hi, I randomly saw this: http://blogs.gnome.org/jjardon/2010/03/30/improve-performance-use-priv-instead-get_priv-macros/ For our uses I'm not sure if it affects performance much, but it would be good to remove all FOO_GET_PRIVATE() macros from GObject code. I removed this macro generation from

Re: [Geany-devel] Geany 0.18 (configure.in) has hidden depends on 'which' utility.

2010-03-31 Thread Nick Treleaven
On Thu, 25 Mar 2010 18:11:15 + Nick Treleaven nick.trelea...@btinternet.com wrote: This patch actually reduced portability. https://sourceforge.net/tracker/?func=detailatid=787791aid=2973764group_id=153444 Solutions would be welcome. I think we should just revert the change

  1   2   3   4   5   >