Re: [Geany-Users] Highlighting the lexical scope relative to the cursor position

2013-12-20 Thread Lex Trotman
On 20 December 2013 10:42, James Brierley wrote: > Hello everyone, > > I might just be being dense, but I can’t seem to find any hard info about > this, so I’ll just throw it out there. > > Suppose I’m writing a function such as the following C/Java-ish pseudocode > (the spurious symbols will be

Re: [Geany-Users] Highlighting the lexical scope relative to the cursor position

2013-12-23 Thread Lex Trotman
> > [...] > > Nice! Could scope detection potentially also be used to add local > variables to autocompletion? > Thomas, I looked fairly closely at the possibility of adding local variables a while ago. There are several things missing to get local variables and local scope completion (talking

Re: [Geany-Users] geany for python

2014-01-01 Thread Lex Trotman
You can edit the execute command to add arguments. The default is: python "%f" where %f is replaced by the current file name. So just add your arguments to the command. Cheers Lex On 2 January 2014 05:48, Helmut Büch wrote: > Hi, > as a newbe to geany for python and to this list I wonder h

Re: [Geany-Users] block folding

2014-01-08 Thread Lex Trotman
On 8 January 2014 22:13, Maximilian Krautloher wrote: > Hi all, > > I am a huge fan of geany and I am using it all the time, especially > for creating latex documents. > > I would love to be able to define code folding blocks of my own, but > found no online resource that could point me into the

Re: [Geany-Users] document_open_file(already_open) makes it most recent

2014-01-10 Thread Lex Trotman
On 11 January 2014 05:27, Dimitar Zhekov wrote: > Hi, > > Currently, any attempt to open a file which is already open moves it > to the top of the Recent list. So, if you switch to a open file from > a compiler message or a FiF match, it that file becomes the most > recent. However, Find in Sessi

Re: [Geany-Users] Highlight C function names?

2014-01-10 Thread Lex Trotman
On 11 January 2014 13:21, Nate Bargmann wrote: > As I use Geany for C work, one enhancement to the syntax highlighting > would be to have C function names highlighted. This would be any > symbol, other than a C language keyword such as do, if, else, while, > etc. that often have an open parenthe

Re: [Geany-Users] Highlight C function names?

2014-01-16 Thread Lex Trotman
[...] > However, a quick test shown that the style identifier (as provided by > Scintilla) matches way more than function names only. It highlights also > local variables in functions and many more symbols. > Yeah, thats the problem (my understanding of the OP was they only wanted function names

Re: [Geany-Users] syntax highlighting of .rst files

2014-01-22 Thread Lex Trotman
On 22 January 2014 18:59, Roel De Coninck wrote: > Hi all > > I'm editing an .rst file. When I open the file in vim, there is a syntax > highlighting and I like to have something similar in Geany. Currently, in > geany there is no single highlighting to be seen on the screen. > > My system is

Re: [Geany-Users] syntax highlighting of .rst files

2014-01-22 Thread Lex Trotman
oops, misread the extension. There is no highlighting of restructured text available. A lexer needs to be added to the Scintilla editing widget (a separate project at www.scintilla.org) first. Cheers Lex On 22 January 2014 19:06, Lex Trotman wrote: > > > > On 22 January 2014 18

Re: [Geany-Users] Makefile redirction for Make Command

2014-01-22 Thread Lex Trotman
On 22 January 2014 19:24, Tim Black wrote: > Hello > > > > In the Manual there is talk of Makefile redirection that is used for “out > of tree” compilation. > > > > I am using Geany and have recently migrated a project that uses an > Automake VPATH build(s) and now my apps will not build without

Re: [Geany-Users] Makefile redirction for Make Command

2014-01-22 Thread Lex Trotman
On 22 January 2014 23:19, Tim Black wrote: > Hi thanks for getting back to me. > > Maybe I should have been a little more specific in my requirements: > > My folder structure looks like: > > /APPS > /application1 > /src > /application2 > /src<-

Re: [Geany-Users] Use python virtualenvs in Geany

2014-01-31 Thread Lex Trotman
On 1 February 2014 10:14, Sayth Renshaw wrote: > How can i use isolated environments in Geany? Thinking that maybe I should > create this as a build command so when it compiles it executes using only > virtualenv packages. > > Any tips on how to get this to happen? > If you know how to do this

Re: [Geany-Users] Use python virtualenvs in Geany

2014-01-31 Thread Lex Trotman
On 1 February 2014 10:28, Matthew Brush wrote: > On 14-01-31 03:14 PM, Sayth Renshaw wrote: > >> How can i use isolated environments in Geany? Thinking that maybe I should >> create this as a build command so when it compiles it executes using only >> virtualenv packages. >> >> Any tips on how to

Re: [Geany-Users] Use python virtualenvs in Geany

2014-02-01 Thread Lex Trotman
On 1 February 2014 21:08, Sayth Renshaw wrote: > I use the Project Plugin. Would be good if I could tie it to that to have > each project assigned its own venv. Yes using workon in a build would be > hard as you cannot prompt for input as to what 'workon (self)'. > > > Still we have the project p

Re: [Geany-Users] Use python virtualenvs in Geany

2014-02-01 Thread Lex Trotman
On 2 February 2014 11:12, Sayth Renshaw wrote: > OK using vanilla virtualenv(no wrapper) and with built in project from > geany I have ~/Projects/Test/bin/activate for virtualenv. > > The project is open and so %p as working directory works perfectly, > however it returns error on source /bin/sh:

Re: [Geany-Users] Use python virtualenvs in Geany

2014-02-01 Thread Lex Trotman
the path to your actiavte script is wrong. it should be ./bin/activate I think. Cheers Lex > > On Sun, Feb 2, 2014 at 11:47 AM, Lex Trotman wrote: > >> >> >> >> On 2 February 2014 11:12, Sayth Renshaw wrote: >> >>> OK using vanilla virtualenv

Re: [Geany-Users] Use python virtualenvs in Geany

2014-02-03 Thread Lex Trotman
On 3 February 2014 20:48, Sayth Renshaw wrote: > Thanks Enrico that does seem to work on the file I have > > using bin/python "%f" and %p as my working directory. > > I can't however get a working version of a /bin/sh -c %p/bin/activate; > python %f style virtualenv command. I have tried many ver

Re: [Geany-Users] tweaking

2014-02-06 Thread Lex Trotman
On 7 February 2014 04:15, Ramsey Darling wrote: > Greetings! > > I am wondering about tweaking a particular behaviour, and I am not even > sure it's possible. Basically, when I am writing a function, and I add > braces, I then place the cursor in between the braces and hit enter. The > brace dro

Re: [Geany-Users] Makefile redirction for Make Command

2014-02-07 Thread Lex Trotman
[...] > Just one more question though - Eclipse allows you to specify a target for a > build e.g. Debug or Release. > > > > Is there a way to simulate this in Geany? Can I have a build or build1A > target selectable from a menu or something easy to use like that and then > pass this as an argum

Re: [Geany-Users] smalsmall Q

2014-02-07 Thread Lex Trotman
On 8 February 2014 11:30, Talking Bird <1402...@gmail.com> wrote: > Hi guys! Geany my first IDE. Tell my please, how can i choose other colour > for this syntax element "\n"? > Thanks for all! > The recognition and highlighting of "syntax" within strings would have to be performed by the Lexer in

Re: [Geany-Users] List all variables in javascript file ?

2014-02-17 Thread Lex Trotman
On 18 February 2014 08:46, Alain Meunier wrote: > Hello, > > Is it possible to list all the vars in a javascript/lua/python app ? > > The symbols just list the functions. Vars would be cool too.. :) > > Any hints ? thanks Don't know enough Lua to know if its possible. Others may wish to comment.

Re: [Geany-Users] short cut for bépo

2014-02-19 Thread Lex Trotman
On 20 February 2014 11:46, major_ghz wrote: > hello, > > i try to modify short cut for more easy in bepo, > but alt commande open menu, or short cut no responding > > can i désactivate atl menu short cut ? Alt activating a menu is a function of your window manager or the GTK toolkit, it isn't som

Re: [Geany-Users] [Geany-i18n] Short downtime of geany.org and lists on Sunday, March 09 2014

2014-03-29 Thread Lex Trotman
On 30 March 2014 07:09, Yosef Or Boczko wrote: > The git web don't work[1] yet. > > [1] https://git.geany.org/ Thanks, AFAIK thats only a mirror of the github master. Cheers Lex > > Regards, > Yosef Or Boczko > > בתאריך א', מרץ 9, 2014 בשעה 6:13 PM, Enrico Tröger > כתב: >> >> On 05/03/14 21:2

Re: [Geany-Users] Changing Colour scheme

2014-04-05 Thread Lex Trotman
[...] > [2] http://www.geany.org/Download/Extras > A better set of colour schemes for recent versions of Geany are at https://github.com/codebrainz/geany-themes Cheers Lex ___ Users mailing list Users@lists.geany.org https://lists.geany.org/cgi-bin/ma

Re: [Geany-Users] Changing Colour scheme

2014-04-05 Thread Lex Trotman
On 5 April 2014 20:48, Lex Trotman wrote: > [...] > >> [2] http://www.geany.org/Download/Extras >> > > A better set of colour schemes for recent versions of Geany are at > https://github.com/codebrainz/geany-themes Oops, wrong link, these are under the Geany g

Re: [Geany-Users] Users Digest, Vol 102, Issue 5

2014-04-11 Thread Lex Trotman
On 12 April 2014 14:46, Mike Miller wrote: > Hi, > > I use geany at times to edit notes that are just indented plain text. I > wonder if there is a way to have them fold like source code? I've tried a > few scripting language settings but it usually results in weird artifacts > like the word "fo

Re: [Geany-Users] Users Digest, Vol 102, Issue 5

2014-04-11 Thread Lex Trotman
On 12 April 2014 15:43, Matthew Brush wrote: > On 14-04-11 09:46 PM, Mike Miller wrote: >> >> Hi, >> >> I use geany at times to edit notes that are just indented plain text. I >> wonder if there is a way to have them fold like source code? I've tried >> a few scripting language settings but it u

Re: [Geany-Users] Close console

2014-04-20 Thread Lex Trotman
On 20 April 2014 19:22, Slavko Kocjancic wrote: > Hello... > > How to close console window automaticaly (after run command) if errorcode is > 0? There is no automatic way of closing the terminal because there is no way of knowing if a program outputs any messages of output to stdout or stderr tha

Re: [Geany-Users] Close console

2014-04-20 Thread Lex Trotman
On 20 April 2014 20:09, Thomas Martitz wrote: > Am 20.04.2014 12:07, schrieb Lex Trotman: > >> On 20 April 2014 19:22, Slavko Kocjancic wrote: >>> >>> Hello... >>> >>> How to close console window automaticaly (after run command) if errorcode

Re: [Geany-Users] Has anyone experienced Build Commands being stuck as defaults???

2014-04-23 Thread Lex Trotman
On 24 April 2014 05:13, Tory Gaurnier wrote: > Lately, I installed all the different plugins for Geany 1.24, and now when I > click on the Build menu item there are only the default build commands, but > if I click "Set Build Commands" it shows my custom build commands, are there > any known issue

Re: [Geany-Users] Has anyone experienced Build Commands being stuck as defaults???

2014-04-24 Thread Lex Trotman
ot sure what you mean by "user settings", I only have one Build Commands >> menu, with file specific build commands, project specific build commands, >> and global build commands. >> >> >> On 04/23/2014 06:26 PM, Lex Trotman wrote: >>> >>>

Re: [Geany-Users] Has anyone experienced Build Commands being stuck as defaults???

2014-04-24 Thread Lex Trotman
On 25 April 2014 12:57, Tory Gaurnier wrote: > I did, that's how I changed the name, been using Geany for about 2 years or > so, I added QML support (though never got it merged with the main git repo), > and I've never had this issue till now, if I open the Build Commands dialog, > it shows the na

Re: [Geany-Users] Has anyone experienced Build Commands being stuck as defaults???

2014-04-24 Thread Lex Trotman
On 25 April 2014 14:25, Tory Gaurnier wrote: > > On 04/24/2014 09:15 PM, Tory Gaurnier wrote: >> >> >> On 04/24/2014 08:53 PM, Lex Trotman wrote: >>> >>> On 25 April 2014 12:57, Tory Gaurnier >>> wrote: >>>> >>>> I did

Re: [Geany-Users] Has anyone experienced Build Commands being stuck as defaults???

2014-04-24 Thread Lex Trotman
On 25 April 2014 14:33, Tory Gaurnier wrote: > > On 04/24/2014 09:29 PM, Lex Trotman wrote: >> >> On 25 April 2014 14:25, Tory Gaurnier wrote: >>> >>> On 04/24/2014 09:15 PM, Tory Gaurnier wrote: >>>> >>>> >>>> On 04/24/20

Re: [Geany-Users] Problem with mouse copy/paste

2014-05-07 Thread Lex Trotman
On 7 May 2014 22:36, Alessandro Pasotti wrote: > Hi, > > I'm not sure it is a geany bug but this is the only GTK application I use > and I'm on kubuntu 14.04. > > The problem seems the same described here: > > https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1032119 > > - Copy-paste with mouse

Re: [Geany-Users] Problem with mouse copy/paste

2014-05-07 Thread Lex Trotman
On 8 May 2014 16:30, Alessandro Pasotti wrote: > 2014-05-08 2:23 GMT+02:00 Lex Trotman : >> >> On 7 May 2014 22:36, Alessandro Pasotti wrote: >> > Hi, >> > >> > I'm not sure it is a geany bug but this is the only GTK application I >> >

Re: [Geany-Users] Problem with mouse copy/paste

2014-05-08 Thread Lex Trotman
[...] > > Funny, it's about 20 years now that I'm using that method to quickly > copy-paste under linux using the mouse, just to discover today that it's the > wrong one :) Never too late to learn something! > > BTW it's a pity, because I find it much more quick and intuitive than > hitting various

Re: [Geany-Users] Problem with mouse copy/paste

2014-05-08 Thread Lex Trotman
On 8 May 2014 18:00, Thomas Martitz wrote: > Am 08.05.2014 09:53, schrieb Lex Trotman: > >>> Ah, it also works in vim (didn't test emacs though) I'm pretty sure >>> all >>> curses-based apps work. >> >> Terminal based apps do that becaus

Re: [Geany-Users] Help by filename

2014-05-12 Thread Lex Trotman
On 12 May 2014 17:30, Slavko Kocjancic wrote: > Hello... > > Is there a way to redirect F1 or perheaps shift F1 to show help by project? > I mean if I hit F1 while editing *.py to get python help, if i edit *.asm to > get asm help etc... No, F1 by default gives you Geany help. > > It can be don

Re: [Geany-Users] Using Geany for Zephir sources

2014-05-15 Thread Lex Trotman
On 15 May 2014 17:07, Stéphane Mourey wrote: > Hi everyone, > > I'm new a the list, so just a few word to introduce myself : I am mostly a > PHP developer and I often write for the french magazine "GNU/Linux Magazine > France". I'm using Geany on a daily basis for a long time, and enjoy it more >

Re: [Geany-Users] Using Geany for Zephir sources

2014-05-15 Thread Lex Trotman
[...] >> more my needs. My choice was filetypes.cs, and this was the base of my >> project on Gitbub. Now syntax highlighting is correct, but the symbols tab >> does not work... > > Strange, if I take the "hello world" example from the zephir-lang docs > and simply set filetype C# both highlighting

Re: [Geany-Users] Using Geany for Zephir sources

2014-05-15 Thread Lex Trotman
ceforge.net/) and are written in C. You would have to make a zephyr specific parser, possibly by modifying an existing parser. Cheers Lex > > > > Le 15/05/2014 10:14, Lex Trotman a écrit : > > On 15 May 2014 17:07, Stéphane Mourey > wrote: > > Hi everyone, > > I'

Re: [Geany-Users] Using Geany for Zephir sources

2014-05-15 Thread Lex Trotman
ny to use the PHP parser but not > expect the PHP opening tag ? My quick look shows it is hard coded in the PHP parser to expect > Regards, > > Stéphane > > Le 15/05/2014 13:09, Lex Trotman a écrit : > > On 15 May 2014 19:50, Stéphane Mourey > wrote: > > Thanks al

Re: [Geany-Users] Search in symbolic link files

2014-05-21 Thread Lex Trotman
On 21 May 2014 17:28, Kim Ludvigsen wrote: > I have a folder with symbolic links to files in various places. I would like > to be able to search in those files. > > It works fine using: > Linux Mint 13 (maya), kernel Linux 3.2.0-23-generic > Geany: 0.21 > Caja 1.2.1 > > The search in the folder wi

Re: [Geany-Users] Search in symbolic link files

2014-05-21 Thread Lex Trotman
ex > Regards, > > /Emil > > > On Wed, May 21, 2014 at 10:10 AM, Lex Trotman wrote: >> >> On 21 May 2014 17:28, Kim Ludvigsen wrote: >> > I have a folder with symbolic links to files in various places. I would >> > like >> > to be able to search

Re: [Geany-Users] per filetype font

2014-06-15 Thread Lex Trotman
On 15 June 2014 18:14, Johannes Lange wrote: > Hi everyone, > > I am looking for a way to choose a font "per filetype". > E.g. I normally use a Monospace font for coding, but if I am writing > continuous text like with LaTeX, I'd prefer a proportional one. > Now I am using different filetypes in o

Re: [Geany-Users] per filetype font

2014-06-15 Thread Lex Trotman
On 15 June 2014 19:01, Johannes Lange wrote: > On Sun 15 Jun 2014 10:54:38 CEST, > > Lex Trotman wrote: >> >> On 15 June 2014 18:14, Johannes Lange >> wrote: >>> >>> Hi everyone, >>> >>> I am looking for a way to choose a font &quo

Re: [Geany-Users] different desktop themes

2014-06-17 Thread Lex Trotman
A quick web search shows that oxygen-gtk causes problems and crashes on lots of other applications. You could try upgrading (or downgrading) oxygen-gtk. Cheers Lex On 18 June 2014 01:23, Kevin McCormick wrote: > I just installed geany-1.24.1 on my Slackware 14.1 x86_64 system. I had > set my /

Re: [Geany-Users] Syntax, colors, functions

2014-06-24 Thread Lex Trotman
On 25 June 2014 04:19, Péter wrote: > Hi, > > Is there any way to syntax-colorize member function names, like below the > "ByteBuffer::put"? > The "function=0x002F30;0xF8;true" in > ~/.config/geany/filedefs/filetypes.common seems not to be taken into > account. > (The "keyword=.." *is* taken i

Re: [Geany-Users] automatically Reload the current file from disk upon external modification?

2014-07-09 Thread Lex Trotman
On 9 July 2014 18:36, Liviu Andronic wrote: > Dear all, > Currently Geany will pop-up a dialogue: > "The file 'gWidgets2-filter.R' on the disk is more recent than > the current buffer. > > Do you want to reload it?" > > when the same file has been modified externally. When working on a > file usin

Re: [Geany-Users] automatically Reload the current file from disk upon external modification?

2014-07-09 Thread Lex Trotman
On 9 July 2014 20:30, Liviu Andronic wrote: > On Wed, Jul 9, 2014 at 11:28 AM, Lex Trotman wrote: >> On 9 July 2014 18:36, Liviu Andronic wrote: >>> Dear all, >>> Currently Geany will pop-up a dialogue: >>> "The file 'gWidgets2-filter.R' on

Re: [Geany-Users] I want to run a c program on Prisoner's Dilemma in Geany but can't

2014-07-23 Thread Lex Trotman
On 23 July 2014 19:29, Rajib Bandopadhyay wrote: > *[Attention- some additions]* > > On 22/07/2014, Rajib Bandopadhyay wrote: >> I use Knoppix 7.2. The version is in Debian archive. Link: >> https://packages.debian.org/sid/i386/geany-plugin-scope/download >> Knoppix Synaptic shows this as broken

Re: [Geany-Users] styling of selected text in unfocused window

2014-07-23 Thread Lex Trotman
On 23 July 2014 19:57, paur...@gmail.com wrote: > I have set fg and bg colors for text selection in filetypes > configuration but these are not applied sometimes after the editor > window loses focus, for instance when the search dialog is open or > after switching between tabbed documents too for

Re: [Geany-Users] I want to run a c program on Prisoner's Dilemma in Geany but can't

2014-07-23 Thread Lex Trotman
On 23 July 2014 20:13, Rajib Bandopadhyay wrote: > On 23/07/2014, Lex Trotman wrote: > [snipped] > ... >> The Geany project does not provide any packages. You should address >> the questions about package problems to the packagers for the >> respective distributions.

Re: [Geany-Users] I want to run a c program on Prisoner's Dilemma in Geany but can't

2014-07-23 Thread Lex Trotman
On 23 July 2014 21:19, Rajib Bandopadhyay wrote: > [Attn: Lex Trotman - Some additions] > > On 23/07/2014, Rajib Bandopadhyay wrote: > Dear Lex, > Please peruse the following links and then the attached snapshots: > A. http://www.geany.org/Support/Plugins > ... > T

Re: [Geany-Users] I want to run a c program on Prisoner's Dilemma in Geany but can't

2014-07-23 Thread Lex Trotman
On 24 July 2014 16:08, Rajib Bandopadhyay wrote: > Dimitar Zhekov writes: > [snipped] >> Scope requires Geany, glib/gtk+ and vte. >> Geany requires glib/gtk+ and suggests vte. These are the libraries required to run, not the tools required to build. > > NOt only these but intltool as well. Inst

Re: [Geany-Users] Find, regex, spans lines

2014-07-31 Thread Lex Trotman
On 1 August 2014 04:27, Colomban Wendling wrote: > Le 31/07/2014 19:52, Péter a écrit : >> When I issue a Find, with regular expression like "[^Q]*Q", Geany >> behaves strangely: the highlight (the string found) spans many lines. >> The "[^Q]*" matches as if the lines were joined. >> (The search i

Re: [Geany-Users] Find, regex, spans lines

2014-08-01 Thread Lex Trotman
ne line.) We were not sure what you were actually trying to achieve, but if this does it then thats ok. :) > > > Lex Trotman wrote: >> >> though you can set flags in the regex (?m). > > > I did not really succeed to use it. (I found the > http://www.geany.org/manua

Re: [Geany-Users] Find, regex, spans lines

2014-08-01 Thread Lex Trotman
[...] >> >> And thats the right thing to do IM(NS)HO. > > Not really, but it's for sure a useful feature, yet it can be annoying > at times. > > To be clear, I never wanted to remove multi-line regex support, just add > an option for single-line ones. Yeah, if you have both its fine, multi-line ca

Re: [Geany-Users] Page-down at start

2014-08-04 Thread Lex Trotman
On 5 August 2014 00:44, Péter wrote: > Matthew Brush wrote: >> >> the VTE/terminal still has input focus. > > > I used an external terminal window (xfce4-terminal). ("Virtual terminal > support" is not even loaded.) > > >> You can jump to the editor using the "Switch to Editor" keybinding > > > Ye

Re: [Geany-Users] Were is Code Folding in Preferences?

2014-08-15 Thread Lex Trotman
edit->preferences->editor->features->code folding Cheers Lex On 16 August 2014 15:37, Lee Gold wrote: > I'm sorry I must be missing it. Geany 1.22 on Debian and I can not find > the code folding in the preferences to turn it off. It must be there? > > Thanks > > > -- > http://www.fastmail.fm - A

Re: [Geany-Users] Left Margin and Alternating Line Backgrounds

2014-08-24 Thread Lex Trotman
On 24 August 2014 20:23, Matan Bendix Shenhav wrote: > Dear Geany Users, > > I have only recently rubbed the magic lamp, so please excuse my naivety; I > have two questions: > > 1. Is there a setting or plugin that permits line backgrounds to alternate > in shading? No there isn't any built-in ca

Re: [Geany-Users] beginner

2014-09-02 Thread Lex Trotman
On 3 September 2014 04:44, james bernard wrote: > > I am a 61 year old total novice, and I would like to use GEANY as an IDE for > the PYTHON programming language. > I have a HP laptop with windows 8.1 installed and I have downloaded PYTHON > 2.7.8 and GEANY 1.24. when I try to execute some code I

Re: [Geany-Users] emmit

2014-09-06 Thread Lex Trotman
On 7 September 2014 07:59, siefke_lis...@web.de wrote: > Hello, > > i try to run emmit with geany. I has now update to 1.24.1 for geanypy > installation under gentoo. Now i follow the readme from emmit git > > https://github.com/sagarchalise/geanypy-emmet Did you use the authors personal gtk-3 ve

Re: [Geany-Users] Problem with gfortran in Geany

2014-09-06 Thread Lex Trotman
On 7 September 2014 11:32, William Waalkes wrote: > Hello, > > I am trying to use geany on my windows 7 os to code in fortran and I have > installed gfortran correctly (confirmed by compiling on the command line). > In geany however, when I try to compile a code, geany cannot find the > gfortran c

Re: [Geany-Users] Problem with gfortran in Geany

2014-09-06 Thread Lex Trotman
spawning of commands on windows currently uses the system() command so the use of quotes in the command varies between versions of windows. You might try searching the mailing list/bug reports to find suggestions about adding extra/removing quotes that various people have found to work. Cheers Lex

Re: [Geany-Users] Feature request: "Open all" (after "Find in files")

2014-09-10 Thread Lex Trotman
On 10 September 2014 21:12, Péter wrote: > It would be handy to have an "open all" command when the message tab shows > the search results (with file names). > > (Because, among others, there is no "replace all, in this directory (and > below)", only "replace all, in opened files".) Editing close

Re: [Geany-Users] Feature request: "Open all" (after "Find in files")

2014-09-11 Thread Lex Trotman
On 11 September 2014 21:38, Péter wrote: > Lex Trotman wrote: >>> >>> I can manually add the extra "-l" option to grep, but maybe it is worth >>> to >>> add a "only file names" checkbox too. >> >> >> You wouldn't ne

Re: [Geany-Users] Feature request: "Open all" (after "Find in files")

2014-09-12 Thread Lex Trotman
On 12 September 2014 21:23, Nick Treleaven wrote: > On 12/09/2014 09:38, Matthew Brush wrote: >> >> At least for my use, I actually want the files all open in Geany, then >> maybe I'll do individual replace-in-file for each file or other edits on >> each file that contains matches. Just modifying

Re: [Geany-Users] geany does (no longer) start

2014-10-01 Thread Lex Trotman
On 30 September 2014 11:19, Matthew Brush wrote: > On 14-09-29 07:04 AM, Andreas Tscharner wrote: >> >> Hello World, >> >> On an up-to-date Debian unstable, geany does no longer start, I get the >> following message instead: >> >> Attempt to unlock mutex that was not locked >> >> Does anyone know

Re: [Geany-Users] Bug? Detecting indent width from content.

2014-10-01 Thread Lex Trotman
On 23 September 2014 00:46, Péter wrote: > Hi! > > Here is my small sample file (indent unit is 4 spaces): > > -- -- -- -- > $ cat indent_width.cpp > // Indent width, detect from content: 8 (wrong). Delete any line. Indent > width, detect from content: 4 (good). > namespace S { > int z () { >

Re: [Geany-Users] Remembering fold status

2014-11-05 Thread Lex Trotman
On 6 November 2014 08:16, Stephen Schaefer wrote: > I’m experiencing the same lack of remembered fold status described in this > thread: http://lists.geany.org/pipermail/users/2012-September/008237.html > > > > Was there ever a resolution to that problem? I don't think so because the problem didn

Re: [Geany-Users] Command chaining

2014-12-04 Thread Lex Trotman
On 5 December 2014 at 11:18, Francois Tonneau wrote: > Hello-- > > I have a minor technical question about custom build-menu commands and the > context-action command for a specific file type. > > I have noticed that build-menu commands accept command chaining such > as: > > command_1 && command_2

Re: [Geany-Users] Jump to start/end of visual line

2014-12-23 Thread Lex Trotman
On 24 December 2014 at 02:53, wrote: > Just found out that + and + do what I want. > > However, I want to swap those key bindings with and . > > There is an option to swap + with , but there is no key > binding for + in my configuration dialog. There's only . :( In the dialog at menu->

Re: [Geany-Users] Configuring build commands

2015-01-04 Thread Lex Trotman
On 5 January 2015 at 02:06, Simon Langley wrote: > I want to make Geany use my preferred build commands. I can do it with a > new project by using Build/Set build commands but then have to do it again > for each project. Reading the manual I thought that all I needed to do was > make a copy of t

Re: [Geany-Users] Can Geany be configured (plugin?) to only Complete Words from a given file?

2015-01-05 Thread Lex Trotman
On 6 January 2015 at 13:24, Chris Simon wrote: > Colomban, Thanks for the link. That's _almost exactly_ what I wanted. > > I tested using PHP file type. The only problem is I'm getting suggestions > from the entire PHP tag space. > I see this is default Geany behavior. Thats because you "luckily"

Re: [Geany-Users] Syntax support for Lisp, Scheme files

2015-01-17 Thread Lex Trotman
On 18 January 2015 at 14:44, Matthew Brush wrote: > On 15-01-17 01:04 PM, Ongun Arısev wrote: >> >> Greetings, >> >> Is there any plugin or configuration file out there that expands Geany's >> abilities of syntax coloring, comment toggling into Lisp, Scheme or other >> languages? Where can I find

Re: [Geany-Users] Syntax support for Lisp, Scheme files

2015-01-18 Thread Lex Trotman
t; Ongun Arısev > > On Sun, Jan 18, 2015 at 9:32 AM, Lex Trotman wrote: >> >> On 18 January 2015 at 14:44, Matthew Brush wrote: >> > On 15-01-17 01:04 PM, Ongun Arısev wrote: >> >> >> >> Greetings, >> >> >> >> Is ther

Re: [Geany-Users] Replace on pop up menu

2015-01-30 Thread Lex Trotman
Whilst it would be possible to add a context sensitive replace to the context menu IMO it would not add much since the default behaviour of the normal replace menu is to be context sensitive. Sure you don't have to take your hand off the mouse to bring up the replace menu, but then you do to type

Re: [Geany-Users] The future of the GeanyPrj plugin

2015-01-30 Thread Lex Trotman
On 31 January 2015 at 02:18, Jiří Techet wrote: > Hi, > > me again :-). With other Geany developers we have been discussing the future > of the GeanyPrj plugin. The problem is the original developer behind it has > abandoned the project so it is unmaintained now. There are several things we > coul

Re: [Geany-Users] [ANN] GProject plugin renamed to ProjectOrganizer + new features

2015-01-30 Thread Lex Trotman
[...] > > Subannouncement: > > I have also created a new GeanyCtags plugin - it uses ctags to parse a > project once and again offers goto tag definition/declaration similarly to > ProjectOrganizer. It is meant to be used for really huge projects where the > parsing speed of PorjectOrganizer is too

Re: [Geany-Users] debugging while interacting with program

2015-02-13 Thread Lex Trotman
Have you looked at the debugger plugin? Cheers Lex On 14 February 2015 at 06:34, Richard Mindorff wrote: > When using the komodo ide for php I could interact with my program, putting > in data and using checkboxes and other HTML controls while debugging the > code in the IDE. > I would like to d

Re: [Geany-Users] Reverting Geany color scheme to default

2015-03-06 Thread Lex Trotman
On 6 March 2015 at 21:21, Ongun Arısev wrote: > Greetings, > > I would like to revert the Geany color scheme to the default one that it has menu->view->change color scheme->default > when it is installed on the system. How can I do so? Furthermore, is there > an easy way to download and change t

Re: [Geany-Users] geany on hidpi screen

2015-03-16 Thread Lex Trotman
Hi Alessandro, Do you mean the expanders on the file tree and the +/- on the source code folds? The former comes from your theme via GTK, I don't think we have any control over it. Maybe GTK and KDE are having a disagreement over the size to use. The latter is generated by Scintilla. There hav

Re: [Geany-Users] geany on hidpi screen

2015-03-16 Thread Lex Trotman
nightly, no changes to the small icons... > > Thanks anyway. > > > 2015-03-16 8:39 GMT+01:00 Lex Trotman : >> Hi Alessandro, >> >> Do you mean the expanders on the file tree and the +/- on the source code >> folds? >> >> The former comes from y

[Geany-Users] Communication reminder

2015-03-17 Thread Lex Trotman
Reminder to all those who are discussing changes that affect others, like APIs or UIs. Please discuss the changes on the ML not exclusively on IRC, not everyone monitors IRC, and time zone issues mean not everyone is able to contribute. Do not discuss it on IRC and then dump it on the ML as a dec

Re: [Geany-Users] Lisp improvements

2015-03-19 Thread Lex Trotman
On 20 March 2015 at 08:03, Matthew Brush wrote: > On 15-03-19 09:26 AM, James Brierley wrote: >> >> Hi all. >> >> Geany has been as good to me over the past year or two of Lisping as it >> was with anything involving curly braces, but I would be interested in >> writing/contributing code to improv

Re: [Geany-Users] problems with autocomplete

2015-03-28 Thread Lex Trotman
What version of Geany and what operating system with what window manager? On 29 March 2015 at 14:39, lmx wrote: > Hi Geany lovers, > > I have a very annoying bug in geany...its has to do with autocompletion. > > I have a dark theme. > > When autocompletion activate to show me the list of options,

Re: [Geany-Users] problems with autocomplete

2015-03-29 Thread Lex Trotman
[...] > I am using the previous release of Geany 1.23.1, and not the last one, I > don't know if changed something about this? The autocomplete box is generated by Scintilla (another project whose editor widget we use). There were quite a lot of changes between 1.23.1 and 1.24.1 the current (and

Re: [Geany-Users] problems debugging

2015-04-04 Thread Lex Trotman
On 5 April 2015 at 05:45, lmx wrote: > Hi guys, > > I am running geany without problems for some years from now... > > today i experienced a weird thing... > > I decided to run vangrind against my code... > > well...now i can't use gdb :( > > I can compile and run the process, but not debug it...

Re: [Geany-Users] Syntax highlight, C-like

2015-04-08 Thread Lex Trotman
On 8 April 2015 at 21:46, Péter wrote: > > Is there only 2 groups of keywords? In C-like files. > > (filetypes.Xxx.conf, tag_parser=C, lexer_filetype=C, [keywords], primary, > secondary) and doccomments There are more, but they are used for passing semantic information like list of typenames fro

Re: [Geany-Users] Syntax highlight, C-like

2015-04-13 Thread Lex Trotman
On 13 April 2015 at 21:32, Péter wrote: > Lex Trotman: >>> >>> Is there only 2 groups of keywords? In C-like files. [] primary, >>> secondary >> >> >> There are more, but they are used for passing semantic information >> like list of typenam

Re: [Geany-Users] Syntax highlight, Asm-like

2015-04-25 Thread Lex Trotman
There is currently work under way to totally replace the may commands are run on windows which will hopefully help. Cheers Lex On 26 April 2015 at 05:37, wrote: > Hi, > > an assembler-like compiler produces such error: > ...mkl2mkp-0.30.exe -i timelapse_ctrl.mkl > MKP file timelapse_ctrl.mkl

Re: [Geany-Users] Error line highlight, asm-like compiler?

2015-05-02 Thread Lex Trotman
There are various problems with running commands on windows, and capturing the results, and what the effect is, depends on which version of geany you use. There is a major upgrade in progress which is intended to fix the problems but it hasn't landed yet. Cheers Lex On 3 May 2015 at 08:01, wro

Re: [Geany-Users] Go lang code navigation and browsing

2015-05-03 Thread Lex Trotman
On 3 May 2015 at 21:06, Cebo wrote: > Hi, > > I've been using Geany for my python coding. > > Now I started doing some things with Google's Go. > Sofar I got everything to work OK except for the code navigaton in the left > panel. > > If I understand it right that's done by using tag files but wha

Re: [Geany-Users] setsend_selection_unsafe=true gone from config file

2015-05-13 Thread Lex Trotman
Need more information, versions of geany, platform, what you did between setting the line and it disappearing. On 13 May 2015 at 22:03, PC Haycock wrote: > Hi all > > I'm using the geany text editor to run scripts on a linux server. I had it > setup so that I could send text to the terminal using

Re: [Geany-Users] Fatal error on startup

2015-06-28 Thread Lex Trotman
Sounds like you may have run Geany as root (or another user) and not shutdown properly. Look in ~/.config/geany for a filename starting with "geany_socket". If you delete that the problem should go away. Cheers Lex On 28 June 2015 at 18:11, Pedro Albuquerque wrote: > > Hi, > > I'm getting this

Re: [Geany-Users] scroll bar width - regarding

2015-07-10 Thread Lex Trotman
The scroll bars on the editor are provided by the Scintilla widget (www.scintilla.org) and AFAICT it has no way to change the width of the vertical scrollbar, or the height of the horizontal scrollbar (assuming thats what you meant). Cheers Lex On 10 July 2015 at 18:33, Rajendra Prasad wrote: >

Re: [Geany-Users] scroll bar width - regarding

2015-07-10 Thread Lex Trotman
On 10 July 2015 at 21:40, Colomban Wendling wrote: > Le 10/07/2015 11:38, Lex Trotman a écrit : >> The scroll bars on the editor are provided by the Scintilla widget >> (www.scintilla.org) and AFAICT it has no way to change the width of >> the vertical scrollbar, or the hei

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

2015-07-14 Thread Lex Trotman
On 14 July 2015 at 18:42, Thomas Martitz wrote: > Am 14.07.2015 um 10:26 schrieb James Brierley: >> >> On 14/07/15 09:16, Thomas Martitz wrote: >>> >>> It seems your distro hasn't updated the geany-plugins packages yet. >>> geany-plugins 1.24 is binary-incompatible with geany 1.25. >> >> >> Anothe

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