Re: [Geany-Users] Latest version of geany problems

2015-07-14 Thread Lex Trotman
On 14 July 2015 at 20:50, James Brierley wrote: > On 14/07/15 09:42, Thomas Martitz wrote: >> >> Plugins also need to be compiled against GTK3. You have to pass >> --enable-gtk3 in the same way. > > > Sorry about this, I had some old Ubuntu-packaged version of Geany installed > and Geany was tryin

Re: [Geany-Users] Font too small

2015-07-17 Thread Lex Trotman
Seems the theme for GTK is set too small. You should be able to set those with the .gtkrc settings. Cheers Lex On 17 July 2015 at 22:21, Ronald Fischer wrote: > I have installed Geany 1.25 for Windows. > > Different to version 1.24, the font used for, for example, the status > line and the pref

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-21 Thread Lex Trotman
On 22 July 2015 at 04:42, Tim Tisdall wrote: > I keep getting the "The file 'somefile.txt' on the disk is more recent than > the current buffer." message after ~30 seconds on each save. This has turned up very occasionally in the past, it is due to the network filesystem reporting a local time fo

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-22 Thread Lex Trotman
On 22 July 2015 at 22:24, Tim Tisdall wrote: > On 21 July 2015 at 17:04, Matthew Brush wrote: >> I've never heard of it. One thing you could try is to watch the files using >> `inotifywait` (in `inotify-tools` package) like: >> >> $ inotifywait -m /path/to/a/file/in/question >> >> And see if

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-22 Thread Lex Trotman
>> There may be some option you can set on the FUSE filesystem to stop it >> doing that and maybe the latest Ubuntu has changed the default. > > I was wondering if there was some sort of automatic change directly > after Geany saved to the file that was triggering things. However, > didn't the pre

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-22 Thread Lex Trotman
> I get two different warnings... If I save the file and then give that > file editor focus after 30 seconds, I get the "The file 'somefile.txt' > on the disk is more recent than the current buffer." warning. That is what is expected if the filesystem is fibbing about the times as I originally de

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-24 Thread Lex Trotman
On 25 July 2015 at 00:27, Tim Tisdall wrote: > On 21 July 2015 at 17:04, Matthew Brush wrote: >> On 15-07-21 11:42 AM, Tim Tisdall wrote: >>> I'm using Ubuntu's network drive system to edit files on a remote system so >>> the filenames are "/run/user/1000/gvfs/sftp:host= ...". This wasn't an >>>

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-24 Thread Lex Trotman
On 25 July 2015 at 01:02, Tim Tisdall wrote: > On 24 July 2015 at 10:51, Lex Trotman wrote: >>> Okay, I'm not sure how it supposed to work, but here's what happens on >>> my machine with the 1.25: >>> >>> inotifywait seems to register nothing wh

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-29 Thread Lex Trotman
On 29 July 2015 at 18:04, Михаил Гаврилов wrote: > 2015-07-29 12:05 GMT+05:00 Михаил Гаврилов : >> 2015-07-29 11:59 GMT+05:00 Vit Ry : >>> Could you provide please some cases/examples, in which default behaviour >>> works wrong? >> >> There are many different cases when the time will be different

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-29 Thread Lex Trotman
On 29 July 2015 at 18:27, Михаил Гаврилов wrote: > 2015-07-29 13:13 GMT+05:00 Lex Trotman : >> It would also have to be done when the file is opened, otherwise you >> have nothing to compare against. >> >> This is likely to make opening and closing large numbers of

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-29 Thread Lex Trotman
On 29 July 2015 at 19:42, Михаил Гаврилов wrote: >> This could handle identifying that the underlying file has changed at >> save time, but currently Geany identifies that the file changed a few >> tens of seconds after it happens. Then it is more convenient for the >> user to do something about

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-07-29 Thread Lex Trotman
On 29 July 2015 at 22:34, Михаил Гаврилов wrote: >> Yes, thats why Geany 1.25 has changed the notification to a bar at the >> top of the editor, it is only visible when you have the file visible >> and it is not modal so it can be ignored if you want to. But if you >> have the log file visible, I

Re: [Geany-Users] Find and replace in files

2015-08-03 Thread Lex Trotman
On 4 August 2015 at 03:46, Pedro Albuquerque wrote: > Hi, > > I'm messing around with colours in an icon folder with lots of sub-folders > containing svg files. > > I can find in files a specific colour, or any string, in all folders and > sub-folders. > > Is there a way to find and replace that s

Re: [Geany-Users] Find and replace in files

2015-08-03 Thread Lex Trotman
On 4 August 2015 at 07:03, Matthew Brush wrote: > On 15-08-03 01:42 PM, Lex Trotman wrote: >> >> On 4 August 2015 at 03:46, Pedro Albuquerque >> wrote: >>> >>> Hi, >>> >>> I'm messing around with colours in an icon folder with lots o

Re: [Geany-Users] 1.25 incorrectly detecting file changes

2015-08-10 Thread Lex Trotman
On 11 August 2015 at 00:39, Tim Tisdall wrote: > Okay, I simply can't take this any more so I've downgraded to 1.24.1 . I'd > be really surprised to find that I'm the only one with this issue. It Yes, somebody else has raised an issue on github, but as I said there, none of the Geany devs has a

Re: [Geany-Users] adding manual code folding points for geany

2015-08-24 Thread Lex Trotman
Code folding is provided by C++ code from Scintilla and compiled into Geany. One example is the LexFortran.cxx you have. You would need such a lexer for your language. The lexer usually also gives you syntax highlighting for the language. As its compiled into Geany you need the Geany source cod

Re: [Geany-Users] Diff to stored file

2015-08-27 Thread Lex Trotman
On 27 August 2015 at 21:10, Torquil Macdonald Sørensen wrote: > Hi! > > If I have a file opened in Geany with unsaved modifications, is there a > simple way to get a diff to the corresponding stored file? Unless there is something hidden in a plugin or one of the external plugins, no. > > I know

Re: [Geany-Users] run python script on mac OS X

2015-09-09 Thread Lex Trotman
On 10 September 2015 at 03:11, Jiří Techet wrote: > On Wed, Sep 9, 2015 at 5:04 PM, François Couloigner > wrote: >> >> Hi, >> >> I use geany to run python script on ubuntu, windows or mac. >> >> On mac (yosemite) i can't run script (F5). >> In console i receive the message : >> "The file /bin/sh

Re: [Geany-Users] run python script on mac OS X

2015-09-10 Thread Lex Trotman
On 10 September 2015 at 19:12, Jiří Techet wrote: > On Thu, Sep 10, 2015 at 12:54 AM, Lex Trotman wrote: >> >> On 10 September 2015 at 03:11, Jiří Techet wrote: >> > On Wed, Sep 9, 2015 at 5:04 PM, François Couloigner >> > >> > wrote: >> &g

Re: [Geany-Users] run python script on mac OS X

2015-09-10 Thread Lex Trotman
hon3 "%f" in Build ->Set build command > > the terminal command in geany is /bin/bash > > 2015-09-10 12:49 GMT+02:00 Lex Trotman : >> >> On 10 September 2015 at 19:12, Jiří Techet wrote: >> > On Thu, Sep 10, 2015 at 12:54 AM, Lex Trotman wrote: >>

Re: [Geany-Users] Fold memory

2015-09-18 Thread Lex Trotman
On 18 September 2015 at 11:39, JVP wrote: > Hi All > > Can someone please tell me how to retain the Fold memory between files. > In other words, when I fold certain files, I would like to come back to the > project later > and see the files folded the way I left it. Unfortunately Geany does not c

Re: [Geany-Users] Geany Java support on Windows

2015-10-16 Thread Lex Trotman
On 17 October 2015 at 00:38, Daiyue Weng wrote: > Hi, I am new to Geany and want to do Java programming using Geany on > Windows. My questions are: > > 1. Does Geany or any of its plugins support Java code completion? and Where Geany does not support autocompletion of code in any language (assumi

Re: [Geany-Users] Geany “send current selection to” command line or batch file(as argument) or browser in Windows

2015-11-04 Thread Lex Trotman
On 5 November 2015 at 06:03, Vivek wrote: > I am using Geany version 1.25 on Windows 7 x64. > > I tried to send current selected text by setting `Context Menu >> Format >> > Send selection to` but it isn't working. > > I can't figure out how to send current open file's selected text to any of > th

Re: [Geany-Users] Geany “send current selection to” command line or batch file(as argument) or browser in Windows

2015-11-05 Thread Lex Trotman
ey are documented in the manual under the relevant context. Cheers Lex > > On 5 November 2015 at 04:21, Lex Trotman wrote: >> >> On 5 November 2015 at 06:03, Vivek wrote: >> > I am using Geany version 1.25 on Windows 7 x64. >> > >> > I tried to send curren

Re: [Geany-Users] Geany templates

2015-11-10 Thread Lex Trotman
On 11 November 2015 at 15:04, Little Girl wrote: > Hey there, > > rch wrote: > >> That does seem to be part of the problem. >> Did that and I've now got a template >> which works almost but not quite. >> Template and output below the line at (a), (b) > >> The following wildcards work nicely >>

Re: [Geany-Users] Geany templates

2015-11-11 Thread Lex Trotman
On 12 November 2015 at 01:46, Little Girl wrote: > Hey there, > > Lex Trotman wrote: > >> On 11 November 2015 at 15:04, Little Girl >> wrote: > >> > Notice that the first one does expand perfectly when you save >> > the file. As for the opening and

Re: [Geany-Users] Geany templates

2015-11-11 Thread Lex Trotman
On 12 November 2015 at 14:48, rch wrote: > Suggestion:- > What's the chance of an online Geany Cook Book > with recipes for all the less obvious ways > of getting things done in Geany? > > Suggest follow the example of the Perl Cookbook > http://my.safaribooksonline.com/0596003137 > i.e. > > **i.j

Re: [Geany-Users] Geany templates

2015-11-12 Thread Lex Trotman
On 13 November 2015 at 01:38, Little Girl wrote: > Hey there, > > Lex Trotman wrote: > >> On 12 November 2015 at 01:46, Little Girl >> wrote: > >> I meant that Geany ends the substitution at the first } so: >> {command: something {ob}{untitled}{ob}} will b

Re: [Geany-Users] new plugin for automatic alignment

2015-11-13 Thread Lex Trotman
On 13 November 2015 at 21:37, Max Voss wrote: > Hello everyone! > > I wrote a plugin that automatically aligns your "=" like this: > > fo=1 > bar=1 > > becomes > > fo = 1 > bar= 1 > > See the geanpy readme ( https://github.com/codebrainz/geanypy ) for info on > how to install python pl

Re: [Geany-Users] new plugin for automatic alignment

2015-11-16 Thread Lex Trotman
Hi, As a general comment, Thomas is right, catching every notify and re-styling all the text is going to be too expensive. For example Asciidoc is 6000+ lines of Python, I would suspect that is too long to use this approach. You should detect the char added notify and just do the line that the c

Re: [Geany-Users] Geany Java debugger

2015-11-17 Thread Lex Trotman
On 18 November 2015 at 06:03, Daiyue Weng wrote: > Hi, I installed Geany 1.26 and Geany Plugins 1.26 on Win 8.1 Pro X64. But I > couldn't find either GeanyGDB or any other debugger for debugging Java > programs through Plugin Manager. So I am wondering anyone knows how to debug > Java in Geany. H

Re: [Geany-Users] Geany couldn't open UTF-8 file if file also contains some binary content

2015-11-17 Thread Lex Trotman
Unfortunately Geany does not open files with binary content because it is not able to handle files containing NULs. Cheers Lex On 18 November 2015 at 15:59, Михаил Гаврилов wrote: > Geany couldn't open UTF-8 file if file also contains some binary content > > Example file attached in archive. > >

Re: [Geany-Users] Geany couldn't open UTF-8 file if file also contains some binary content

2015-11-17 Thread Lex Trotman
On 18 November 2015 at 16:39, Михаил Гаврилов wrote: > > 2015-11-18 11:29 GMT+05:00 Lex Trotman : >> >> Unfortunately Geany does not open files with binary content because it >> is not able to handle files containing NULs. >> >> Cheers >> Lex > >

Re: [Geany-Users] Missing build progress in status field

2015-11-20 Thread Lex Trotman
On 20 November 2015 at 21:50, Emil Axelsson wrote: > Ah, I see that it actually does still say "Build successful". When I wrote > the mail I was sure it didn't... > > However, the progress bar was quite useful to see that the build was > running. E.g. it gave a confirmation that I actually pressed

Re: [Geany-Users] syntax highlighting problem with zsh.

2015-11-27 Thread Lex Trotman
The syntax highlighting in Geany is provided by the Scintilla editing widget we use, which is a separate project at www.scintilla.org. You could ask there, although it explicitly states it only supports BASH. Cheers Lex On 28 November 2015 at 05:23, Ray Andrews wrote: > Gentlemen: > > In zsh t

Re: [Geany-Users] Backup file needed, especially after crash

2015-12-10 Thread Lex Trotman
On 10 December 2015 at 21:31, Thomas Martitz wrote: > Am 10.12.2015 um 11:43 schrieb Ronald Fischer: >> >> Once in a while, Geany crashes with a Java Runtime error (no detailed >> description), and especially in this case, having a backup file would be >> great. > > > > What? Geany doesn't involve

Re: [Geany-Users] Looking to contribute

2015-12-12 Thread Lex Trotman
On 13 December 2015 at 11:47, wrote: > Sujeet, > > (Shall I call you Sujeet?) > > Yes, I can supply more details, and we can take this off list if either you or > others on the list prefer. You should always keep discussion on-list, that way you have less risk of proudly announcing your new feat

Re: [Geany-Users] Looking to contribute

2015-12-13 Thread Lex Trotman
... > >> Correct, its better to submit new lexers there. > > Yes, in the end, it will be submitted there. Should I infer that you prefer > to see the development and discussion moved to one of its lists? Up to you, but you are going to want to ask questions of the Scintilla maintainer (see below)

Re: [Geany-Users] reflow in macro

2015-12-13 Thread Lex Trotman
On 14 December 2015 at 06:06, Mike Miller wrote: > Hi, > > Does anyone know why the "reflow lines/block" aka left-justify Ctrl-J does > not work with the geany macro plugin? When I try it, I get this dialog: > > i Unrecognised message >2025 1403 0 Because geanymacro records Scintil

Re: [Geany-Users] Looking to contribute

2015-12-13 Thread Lex Trotman
On 14 December 2015 at 02:50, Ray Andrews wrote: > On 12/13/2015 06:47 AM, rhkra...@gmail.com wrote: >> >> If I had a Scintilla lexer, even if it is not distributed with Scite, >> iirc, it is fairly easy to add / activate it for my own use. I guess I >> assumed I could to the same for any Scintill

Re: [Geany-Users] How to customize context/popup menu ?

2015-12-14 Thread Lex Trotman
On 14 December 2015 at 20:22, Christophe Doumenc < christophe.doum...@dtvresearch.com> wrote: > Hi, > > Is there a way to more or less "freely" change items in the popup menu > like jEdit does (right click + "Customize This Menu") ? > I unsuccessfully tried to find an answer in Geany help, FAQ, Wi

Re: [Geany-Users] geany blank files start with two lines

2015-12-18 Thread Lex Trotman
Unselect Menu->edit->preferences->files->ensure new line at file end Cheers Lex On 18 December 2015 at 23:18, Daiyue Weng wrote: > Hi, I found that whenever I create and save a blank java files (e.g. click > 'New' -> save 'untitled' as 'file_name.java'), the saved files always start > with two b

Re: [Geany-Users] symbols in file *.cu

2015-12-18 Thread Lex Trotman
See the answer on github, please do not cross post. Cheers Lex On 19 December 2015 at 06:06, real bas wrote: > Dear friends, > I using geany since version 1.24 and symbols are not found in file *.cu (no > functions are listed, saying no tags found), is expected to fix it? > > ___

Re: [Geany-Users] no printing

2015-12-28 Thread Lex Trotman
A bit more information would be useful, like version of geany, your operating system, gtk versions. Just post the top 3-4 lines of menu->help->debug messages as well as the OS version Cheers Lex On 29 December 2015 at 03:10, Ray Andrews wrote: > I've never been able to print from Geany, anyone

Re: [Geany-Users] no printing

2015-12-28 Thread Lex Trotman
On 29 December 2015 at 06:55, Ray Andrews wrote: > On 12/28/2015 10:53 AM, Lex Trotman wrote: >> >> A bit more information would be useful, like version of geany, > > > 1.23.1, but this goes way back. >> >> your >> operating system, > > > Debi

Re: [Geany-Users] RFC: New Custom Filetypes Repository

2016-01-06 Thread Lex Trotman
>> Why not, could be useful to some and have more semantic/visibility than >> the Wiki. >> >> Tho, the Wiki filetypes also often comes with additional details, like >> the snippet for filetype_extensions.conf, or a (possibly useful) build >> script for Geany, comments, tips, etc. Maybe there shoul

Re: [Geany-Users] Problem with geany-plugins package on Fedora's Copr site

2016-01-09 Thread Lex Trotman
Since the Geany project does not do any packaging itself you are probably better to contact the packager directly (though they might watch this ML too) Cheers Lex On 8 January 2016 at 09:12, Russell Dickenson wrote: > As a Fedora user who is also an avid Geany fan, I was excited to see a > plugi

Re: [Geany-Users] Any way to make geany recognize modelines for syntax coloring?

2016-01-12 Thread Lex Trotman
On 13 January 2016 at 02:23, Karma Kolabor wrote: > Hi, Thomas, > > thanks for the quick answer - unfortunately I can not get it to work. > > I have this on top of the file (this is btw a Vagrantfile, so you can > easily reproduce): > # -*- mode: ruby -*- The name extracted has to be spelled corr

Re: [Geany-Users] Any way to make geany recognize modelines for syntax coloring?

2016-01-12 Thread Lex Trotman
ch a common thing... >> I do not know how to change case with a regex, maybe there is some way >> to do that? >> Any other solution to make geany support this are very welcome, thanks! >> Have a nice day, >> Karma >> >> On Tue, Jan 12, 2016 at 8:21 PM, Lex T

Re: [Geany-Users] Any way to make geany recognize modelines for syntax coloring?

2016-01-12 Thread Lex Trotman
entally case insensitive for the mode name. > > Thanks for your attention, > Karma > > On Tue, Jan 12, 2016 at 8:44 PM, Lex Trotman wrote: >> On 13 January 2016 at 05:35, Karma Kolabor wrote: >>> Ah, wait - is there any way to change that expected "Ruby" stri

Re: [Geany-Users] Any way to make geany recognize modelines for syntax coloring?

2016-01-12 Thread Lex Trotman
On 13 January 2016 at 06:58, Thomas Martitz wrote: > Am 12.01.2016 um 17:23 schrieb Karma Kolabor: >> >> Hi, Thomas, >> >> thanks for the quick answer - unfortunately I can not get it to work. >> >> I have this on top of the file (this is btw a Vagrantfile, so you can >> easily reproduce): >> # -*

Re: [Geany-Users] Any way to make geany recognize modelines for syntax coloring?

2016-01-12 Thread Lex Trotman
On 13 January 2016 at 10:12, Matthew Brush wrote: > On 2016-01-12 11:32 AM, Karma Kolabor wrote: >> >> Ah, hmm, would you please like to make this case insensitive? >> You know, it would be really nice if it just worked out of the box... >> modelines are such a common thing... >> I do not know ho

Re: [Geany-Users] Any way to make geany recognize modelines for syntax coloring?

2016-01-12 Thread Lex Trotman
On 13 January 2016 at 10:26, Matthew Brush wrote: > On 2016-01-12 5:40 AM, Karma Kolabor wrote: >> >> Hi, >> >> I have not seen any way to make geany recognize modeline line e.g. >> # vi: set ft=ruby >> >> is there a feature or any plugin for this? >> > > What about just adding a Ruby file extensi

Re: [Geany-Users] Any way to make geany recognize modelines for syntax coloring?

2016-01-12 Thread Lex Trotman
On 13 January 2016 at 14:59, Matthew Brush wrote: > On 2016-01-12 4:42 PM, Lex Trotman wrote: >> >> On 13 January 2016 at 10:26, Matthew Brush wrote: >>> >>> On 2016-01-12 5:40 AM, Karma Kolabor wrote: >>>> >>>> >>>> Hi, >&g

Re: [Geany-Users] Any way to make geany recognize modelines for syntax coloring?

2016-01-13 Thread Lex Trotman
See the link at the bottom of every mail on the list. On 13 January 2016 at 17:44, Deon Cloete wrote: > I am unable to unsubscribe from this list and cannot find any guidance as to > how to. Could someone please explain how do I unsubscribe? > > -Original Message- > From: Users [mailto:us

Re: [Geany-Users] Adding a filetype

2016-01-27 Thread Lex Trotman
On 27 January 2016 at 21:23, Alain Aupeix wrote: > Hi, > > New user of geany (v0.21 under Ubuntu 12.04) , I tried to add a language. > I started using filetypes.c and adding *.prg to C extensions. > It works. > > I then now tried to add a new filetype in filetype_extentions.conf, and > to rename

Re: [Geany-Users] How do I get Git-ChangeBar on Fedora?

2016-01-30 Thread Lex Trotman
Hi Russell, As you said, its a packager problem, Geany does not make any packages. Maybe Fedora has a problem with the dependencies, or maybe its just that being a new plugin it needs approval before its added, I don't know the process at Fedora. Cheers Lex On 28 January 2016 at 08:46, Russell

Re: [Geany-Users] css/scss lexer

2016-02-18 Thread Lex Trotman
Both Scintilla (www.scintilla.org) and ctags (https://github.com/universal-ctags/ctags) have upstream projects, so you should submit your changes to them so everybody can benefit. On 19 February 2016 at 06:04, Bambero wrote: > Hi > > If someone needs scss support in scite or geany, here are some

Re: [Geany-Users] Markdown preview plugin for Windows

2016-02-19 Thread Lex Trotman
https://github.com/geany/geany/milestones On 20 February 2016 at 10:38, H wrote: > On February 19, 2016 5:50:17 PM EST, "Enrico Tröger" > wrote: >> >> On 19/02/16 23:19, H wrote: >>> >>> I am a newcomer to geany, while i will use it mainly on Linux, I have >>> also installed it on a computer ru

Re: [Geany-Users] Debugging with gdb

2016-02-28 Thread Lex Trotman
Looks like the debugger plugin maintainer hasn't noticed, you should forward directly to him. Cheers Lex On 24 February 2016 at 22:18, EenyMeenyMinyMoa wrote: > Hi, > I want to do debugging by geany&gdb. > I use debian jessie. > > At first, I post this question on debian-users mailing list. > ht

Re: [Geany-Users] Debugging with gdb

2016-03-02 Thread Lex Trotman
On 2 March 2016 at 22:08, EenyMeenyMinyMoa wrote: > Thanks, Colomban. > >>> When I press the Run button in Debug tab, >>> a message box appears saying >>> "Error loading file". >> >> Did you properly select the program to run in the Target entry of >> Debugger's Target tab? That's where you tell

Re: [Geany-Users] [ANN] Geany-Plugins 1.27 is out!

2016-03-14 Thread Lex Trotman
Thomas, Can you make a pull request on the README of Geanypy in G-P that explains these new things for Python plugin makers. I'm not sure I understand details enough to get it right. Also you can remove the warning that there would be incompatabilities in 1.27 since you did a good job maintainin

Re: [Geany-Users] windows10 .. excute(f5) could not find terminal cmd.exe /Q /C %c

2016-03-18 Thread Lex Trotman
What version of Geany is this? On 19 March 2016 at 14:14, 조성은 wrote: > excute(f5) > > Could not find terminal cmd.exe /Q /C %c... > > help me > > 본 이메일은 Avast로 보호되는 안전한 컴퓨터에서 발송되었습니다. > www.avast.com >

Re: [Geany-Users] windows10 .. excute(f5) could not find terminal cmd.exe /Q /C %c

2016-03-18 Thread Lex Trotman
On 19 March 2016 at 16:22, Gustavo Araújo wrote: > Use linux ​Inappropriate response, Geany prevides a windows and an OSX port.​ > > > Lex Trotman wrote: > > What version of Geany is this? > > > On 19 March 2016 at 14:14, 조성은 wrote: > >> excute(f5) >

Re: [Geany-Users] windows10 .. excute(f5) could not find terminal cmd.exe /Q /C %c

2016-03-19 Thread Lex Trotman
be necessary. > > Regards, > Enrico > > > On 19/03/16 07:17, Lex Trotman wrote: >> What version of Geany is this? >> >> >> On 19 March 2016 at 14:14, 조성은 wrote: >> >>> excute(f5) >>> >>> Could not find terminal cmd.exe /Q

[Geany-Users] [ANN:] Geany Cloud Project

2016-03-31 Thread Lex Trotman
As Geany seems to have plateaued at the pinnacle of conventional IDE technologies, this announcement is to begin the process of converting Geany to leverage hybrid cloud technologies to gain incremental traction through utilisation of innovative cognitive solutions to re-imagine development workflo

Re: [Geany-Users] Clojure Files in Geany

2016-04-24 Thread Lex Trotman
The clojure filetype was included in 2013, so I think its in 1.25, so you should be able to select the filetype menu->document->set filetype->programming languages->clojure but the extensions were overlooked for detecting it automatically, added recently, you could make the change yourself https://

Re: [Geany-Users] Editor customization Q?

2016-04-24 Thread Lex Trotman
On 25 April 2016 at 06:01, R.Mariotti wrote: > As my eyes get older and more tired I am having difficulty seeing the > differences between a single quote and double quote characters. There is no way of having the different quotes different colours. It would require special code in the upstream S

Re: [Geany-Users] Editor customization Q?

2016-04-24 Thread Lex Trotman
On 25 April 2016 at 14:00, John Yeung wrote: > On Sun, Apr 24, 2016 at 7:49 PM, Lex Trotman wrote: >> On 25 April 2016 at 06:01, R.Mariotti wrote: >>> As my eyes get older and more tired I am having difficulty seeing the >>> differences between a single quote

Re: [Geany-Users] Editor customization Q?

2016-04-24 Thread Lex Trotman
On 25 April 2016 at 16:01, John Yeung wrote: > On Mon, Apr 25, 2016 at 12:29 AM, Lex Trotman wrote: >> Scintilla is identifying the string (") and character (') quoted >> lexical entities, which includes their contents, its not just the " or >> ' char

Re: [Geany-Users] Search in file with Keyboard

2016-04-26 Thread Lex Trotman
By default Find Next is bound to `g`. Menu->help->Keyboard Shortcuts shows a list of current keybindings. On 27 April 2016 at 04:25, James Brierley wrote: > On 26/04/16 19:21, Amir Teymuri wrote: >> >> when i want to search for a word a do Ctrl+f and the GUI pops up. How >> can i then search for

Re: [Geany-Users] Search in file with Keyboard

2016-04-26 Thread Lex Trotman
On 27 April 2016 at 10:22, Matthew Brush wrote: > On 2016-04-26 05:05 PM, Lex Trotman wrote: >> >> By default Find Next is bound to `g`. Menu->help->Keyboard >> Shortcuts shows a list of current keybindings. >> > > Unfortunately that won't work as-is

Re: [Geany-Users] Running Clojure / Lisp files in Geany

2016-04-27 Thread Lex Trotman
Hi, What do you need to set up? IIUC Clojure acts like an interpretor like most other lisps. As supplied Geany will run the clj command when you try to execute a script (Menu->Build->Execute or f5 or the execute toolbar button). If you do not have the clj command installed when you installed cl

Re: [Geany-Users] Bracket autocompletion inside other brackets

2016-05-07 Thread Lex Trotman
Geany only inserts the close bracket if the open bracket would be unmatched. Of course if you add an open bracket inside a pair of brackets then it will be matched by the close bracket of the existing pair, so no new bracket is added, even though the existing open bracket is now unmatched. I don'

Re: [Geany-Users] running clojure programm in geany

2016-05-07 Thread Lex Trotman
Unfortunately Clojure is inconsistent in the command it installs. On OSX it installs a command called "clj" which is what Geany has been configured to use (presumably whoever contributed the filetype used OSX). On Debian Clojure installs the "clojure" command instead of "clj". Check that the comm

Re: [Geany-Users] Users Digest, Vol 127, Issue 4

2016-05-08 Thread Lex Trotman
On 8 May 2016 at 21:46, amir teymuri wrote: > @Lex: clojure command doesn't run the programm.clj file. I have installed > clojure via Leiningen and i can run it via lein programm.clj. What should i > do? Install clojure via apt-get install? set the build command to whatever works on the command l

Re: [Geany-Users] Can I do this w/printing?

2016-05-08 Thread Lex Trotman
No, AFAICT there is no way to set the fonts different. Part of the print properties is system dependent IIUC, does your windows "page setup" have a scale and if so does that help? On 9 May 2016 at 02:55, R.Mariotti wrote: > Cannot seem to find this anywhere. Recently I've had to increase the >

Re: [Geany-Users] installing LispEdit plugin

2016-05-11 Thread Lex Trotman
menu->help->debug messges one shows system plugin path Cheers Lex On 11 May 2016 at 22:08, amir teymuri wrote: > I am following the instructions in the HOWTO.pdf in > https://github.com/tgutu/geanylispedit. > > I am using ubuntu 16 and have geany installed via software center. In > /usr/lib/ the

Re: [Geany-Users] Geany as Lisp Editor

2016-05-11 Thread Lex Trotman
You can run a lisp repl in the terminal and execute the selection in it by Menu->Edit->Commands->Send to terminal. It has no default keybinding, but you can of course bind one yourself. I don't think Geany's indent modes match any of the lisp conventions. Cheers Lex On 12 May 2016 at 00:05, am

Re: [Geany-Users] Keybindings to delete from current char to the end/begining of line

2016-05-16 Thread Lex Trotman
There is a delete whole line (default ctrl-k) and delete to line end (default ctrl-shift-delete) that are bindable, but no delete to current position. Cheers Lex On 17 May 2016 at 02:29, Abel wrote: > Hi! > > I wanna know if it's possible to set keybindings for: > - deleting from current positio

Re: [Geany-Users] Keybindings to delete from current char to the end/begining of line

2016-05-16 Thread Lex Trotman
On 17 May 2016 at 09:09, Abel wrote: > OK. So, technically, there is no way to have a shortcut for delete from > beginning to current position? Correct > > Thanks Lex! > > > > Saludos, > >Abel. > >

Re: [Geany-Users] Automatic Uppercasing of SQL Keywords

2016-05-19 Thread Lex Trotman
On 20 May 2016 at 06:51, H wrote: > I looked for an option where SQL keywords would automatically be uppercased > but did not find one. > > Does such an option exist? Not in Geany itself, you could check out plugins (http://plugins.geany.org/) but doubt that either. Cheers Lex > __

Re: [Geany-Users] Sidebar Symbols Highlights Won't Go Away

2016-06-03 Thread Lex Trotman
Did you try menu->Document->Remove Markers ? Cheers Lex On 4 June 2016 at 12:08, Lee Gold wrote: > Hi, > > Using 1.27 with Xubuntu 14.04. I have additional color schemes and using > the Ubuntu color scheme. I'm looking at a css file and I have Geany's > sidebar open. and the sidebar is set to l

Re: [Geany-Users] haxe project filetypes

2016-07-10 Thread Lex Trotman
There is already a Haxe filetype in Geany. Why do you need to make your own? Or at the worst maybe use the existing Haxe filetype file as your starting point not xml? Cheers Lex On 11 July 2016 at 05:37, wrote: > > Hello! > > I'm a new user to geany who wants to use it for haxe programming. I

Re: [Geany-Users] [ANN] Geany 1.28 is out!

2016-07-12 Thread Lex Trotman
I'm sure it will be updated when its maintainer gets time. Cheers Lex On 13 July 2016 at 05:37, Abel wrote: > Great! > > Is there any ppa for getting last releases of Geany directly from apt? It > looks like https://launchpad.net/~geany-dev/+archive/ubuntu/ppa is outdated. > > Saludos, > >

Re: [Geany-Users] Regular expression, for Unicode characters

2016-07-31 Thread Lex Trotman
Geany uses the Glib regex library whose syntax is described at https://developer.gnome.org/glib/stable/glib-regex-syntax.html Cheers Lex 2016-07-31 22:03 GMT+10:00 Vesta : > How to create regular expression tp match all UPPER CASE text within > paragraps tag, and replace these tag with > >

Re: [Geany-Users] Geany and CommonLisp

2016-08-04 Thread Lex Trotman
You need to set the build command to run sbcl. Cheers Lex On 5 August 2016 at 06:57, Amir Teymuri wrote: > Has anyone experiences with setting up Geany as IDE for commonlisp? I have > sbcl installed, this is the output of whereis sbcl: > > sbcl: /usr/bin/sbcl /usr/lib/sbcl /etc/sbcl.rc /usr/shar

Re: [Geany-Users] Windows 10, running ubuntu bash commands as a build option

2016-08-13 Thread Lex Trotman
On 14 August 2016 at 06:58, Matthew Brush wrote: > On 2016-08-13 01:27 PM, bill punch wrote: >> >> You probably know that you can now run a bash command line from Windows >> 10, and even more interestingly you can download all the ubuntu tools >> (14.04) such as g++. >> >> You can also run these

Re: [Geany-Users] Geany custom tags problems!

2016-08-23 Thread Lex Trotman
On 24 August 2016 at 07:07, Rue Sixteen wrote: > Amazing. Thanks for such a quick response. I put tag_parser=COBOL and > restarted Geany. Now it works. Now I need to go and expand the tag file with > all the words I wanted :-) > > I haven't seen a simpleton tutorial anywhere where this is detailed

Re: [Geany-Users] Pls get me off the mailing list

2016-08-31 Thread Lex Trotman
I don't think we can do that for you, the unsubscribe is at the bottom of the page linked at the end of any message. On 31 August 2016 at 20:28, Eddy wrote: > Thx, > Eddy de Boer > > ___ > Users mailing list > Users@lists.geany.org > https://lists.geany

Re: [Geany-Users] Seting up Lahey Fortran F90

2016-09-06 Thread Lex Trotman
On 7 September 2016 at 04:42, Perez, Abel wrote: > Looking for an editor for Lahey F90 Fortran compiler and came across Geany. > Has anyone set it up to use this compiler? Would appreciate any tip.s I'm not sure what you mean by "support", but the manual explains how you can set the build comman

Re: [Geany-Users] Seting up Lahey Fortran F90

2016-09-06 Thread Lex Trotman
Ok, good luck :) Cheers Lex On 7 September 2016 at 12:06, Perez, Abel wrote: > Just looking to see if anyone has done it and what switches they used. > > Abel > > > > Sent from my Sprint Samsung Galaxy® Note 4. > > > Original message > From: Le

Re: [Geany-Users] Trying to not highlight current line

2016-09-14 Thread Lex Trotman
menu->tools->configuration files->filetypes.common the current_line setting about line 107. Cheers Lex On 15 September 2016 at 14:01, Lee Gold wrote: > Hi, > > Geany 1.28 in Win7. I tried all googled answers to turn off highlighting > the current line but did not work. > > How is it done? > > Th

Re: [Geany-Users] # user definable keywords

2016-09-18 Thread Lex Trotman
Works for me with latest Geany development version. The `user1` keywords are highlighted by the `keyword_3` style. To change that you should edit that style in the style file you are using (which is filetypes.common if you are using the default style and menu->tools->configuration files->filetype

Re: [Geany-Users] geany Compile - Strange error message

2016-10-04 Thread Lex Trotman
I am not quite sure how you are setting the commands. Geany has a builtin filetype which is called asciidoc, not adoc. You can edit the filetype specific build settings in the "menu->tools->configuration files->filetype configuration->markup languages->filetypes.asciidoc" and it will save in the

Re: [Geany-Users] Plugin to compare two files and show the difference

2016-10-08 Thread Lex Trotman
On 8 October 2016 at 21:33, Vesta wrote: > Please advice Geany plugin to compare two files and show the difference. Not aware of such a thing. > > Also plugin for searching and highlighting matching HTML tags pairs (if we > highlight open tag, it need highlight matching closing tag. http://p

Re: [Geany-Users] # user definable keywords

2016-10-22 Thread Lex Trotman
Another reason why it didn't, is any of the letters are capitalized ie: > user1=Myspecialword > > Now all I have to do is choose the right colours so the programming page > doesn't look > > like a Picasso. > > Regards > Jan van de Poll > > On 09/19/2016 12:

Re: [Geany-Users] Geany Source compilation

2016-10-31 Thread Lex Trotman
Does the command work on the command line? On 1 November 2016 at 09:39, manohar gaddipati wrote: > C:\cygwin64\bin\gfortran -c "geany.f95" (in directory: > C:\Users\mgaddipati\Desktop\Fortran\Hello) > C:/cygwin64/lib/gcc/x86_64-pc-cygwin/5.4.0/f951.exe: error while loading > shared libraries: ?:

Re: [Geany-Users] Update on source compilation

2016-11-01 Thread Lex Trotman
On 1 November 2016 at 15:17, manohar gaddipati wrote: > Hello, > > This is Manohar and i am still working on source compilation on geany. I am > working on fortran and using windows. Installed Cygwin for windows > > Error 1 > After I add commands under Build commands this is what i get > Commands

Re: [Geany-Users] Q: Geany Bookmarks

2016-11-08 Thread Lex Trotman
On 8 November 2016 at 22:20, Bernhard Kornberger wrote: > Hello, > > In previous versions of Geany bookmarks where added by left-clicking > beside the line numbers and then a green cross appeared there. In my > current setup I can add bookmarks with CTRL-M but left-clicking next > to the line numb

<    1   2   3   4   5   6   7   8   9   10   >