What is the best freebasic IDE for 2017?

Linux specific questions.
Post Reply
lassar
Posts: 306
Joined: Jan 17, 2006 1:35

What is the best freebasic IDE for 2017?

Post by lassar »

I am a newbie at using freebasic in linux.

What is the best linux freebasic IDE ?

Looking for one that you can pull up the help section by pressing F1 .
St_W
Posts: 1626
Joined: Feb 11, 2009 14:24
Location: Austria
Contact:

Re: What is the best freebasic IDE for 2017?

Post by St_W »

There is no "best" IDE, it always depends on your personal expectations and requirements. For Linux I would recommend Geany - it doesn't provide interactive help, though. If that's really a knock-out criteria you could also try poseidonFB (http://freebasic.net/forum/viewtopic.php?f=8&t=23935), although that one is pretty new and not that stable yet.

FreeBasic IDEs for Windows (like FBedit) typically provide the feature you are looking for, so you may try to use a Windows IDE via Wine.
lassar
Posts: 306
Joined: Jan 17, 2006 1:35

Re: What is the best freebasic IDE for 2017?

Post by lassar »

I did some googling, and found that, you can use geany with kchmviewer to get context help.

Go to Edit, Preferences, Tools, Context Action.

Set it to "kchmviewer --sindex %s /chm-path"

Go to Edit, Preferences, Keybindings, go to edit section, "Context Action", press "Change button", press F1 key.
badidea
Posts: 2591
Joined: May 24, 2007 22:10
Location: The Netherlands

Re: What is the best freebasic IDE for 2017?

Post by badidea »

What is the best freebasic IDE for 2017?
Same as the best for 2007: Geany :-)

I could not get 'Context Action' mentioned by 'lasser' working in Geany. I have no 'Change button' option. Also the Geany help mentions a menu option for the context help, but also missing here. I probably have to edit the file-type-configuration-file manually. I forgot where these files are located.
lassar
Posts: 306
Joined: Jan 17, 2006 1:35

Re: What is the best freebasic IDE for 2017?

Post by lassar »

It's tricky to get the "context action" to work.

I thought, that kchmviewer is the best chm viewer.

But now, it crashes on me, and it crashes every time I try to use it.

I guess I will have to try to get xchm to work instead.
badidea
Posts: 2591
Joined: May 24, 2007 22:10
Location: The Netherlands

Re: What is the best freebasic IDE for 2017?

Post by badidea »

Yes, I also use xchm. But xchm does not have this command line option '--sindex' it seems.

Found this thread: http://www.freebasic.net/forum/viewtopi ... 05#p168826 (Context help in Geany)
lassar
Posts: 306
Joined: Jan 17, 2006 1:35

Re: What is the best freebasic IDE for 2017?

Post by lassar »

At first I thought the ubuntu version of xchm could not do context help.

After 10 to 30 attempts, I got xchm to work.

Here is the deal, you need quotes around the chm file location. Won't work without the quotes.

In "context action" put:

xchm "file:/home/username/freebasic/FB-manual-1.05.0.chm#xchm:/KeyPg%s.html"

Replace "username" with you home user name.

Now when you press f1, the chm file will pop up on the freebasic keyword.
3622
Posts: 24
Joined: Mar 14, 2015 23:53

Re: What is the best freebasic IDE for 2017?

Post by 3622 »

lassar wrote:

Set it to "kchmviewer --sindex %s /chm-path"

This worked for me and opened Help at the Index page highlighting the required FreeBasic word .
However, it does not open the actual help page for me. ( I am using PCLinuxOS 64 Bit )
Changing sindex to stoc solves this.

i.e. Set it to "kchmviewer --stoc %s /chm-path"

Hope this is of some help to others and thanks for the initial info.
Post Reply