Giovanni Cardona | 11 Jun 2011 03:05

Lua support to Bluefish?

Hi, how can I add Lua syntax to Bluefish?  -- -- To unsubscribe from this list: send the line "unsubscribe bluefish-users" in the body of a message to listar-QLpEr2logwzILq5++fvS8w@public.gmane.org List Web Page: http://www.ems.ru/cgi-bin/listargate.cgi Main Web Page: http://bluefish.openoffice.nl/

Takeshi Hamasaki | 11 Jun 2011 04:27
Picon

Re: Lua support to Bluefish?

Hi Giovanni,

2011/6/11 Giovanni Cardona <giovanni@...>:
> Hi, how can I add Lua syntax to Bluefish?

Write and place lua.bflang file in bflang directory.
Bflang files are XML files. You can see other bflang files there.
In Linux distributions, the directry is /usr/share/bluefish/bflang/ .
-- 
Takeshi Hamasaki
--

-- 
To unsubscribe from this list: send the line "unsubscribe bluefish-users" in
the body of a message to listar@...
List Web Page: http://www.ems.ru/cgi-bin/listargate.cgi
Main Web Page: http://bluefish.openoffice.nl/

john s wolter | 11 Jun 2011 05:28
Gravatar

Re: Lua support to Bluefish?

How about Lua for quickly re-programming Bluefish.  Lua is an embedded language provided as a linkable library and has been used  for creating game character behaviors.


I'm suggesting its use for parts of BF.  Portions of BF would not be compiled and would be interpreted modules.  The issue of performance would determine which parts of BF could be made from LUA.  Those parts could be replaced or upgraded as needed.

Cheers,
John S Wolter

On Fri, Jun 10, 2011 at 10:27 PM, Takeshi Hamasaki <hmatrjp <at> users.sourceforge.jp> wrote:
Hi Giovanni,

2011/6/11 Giovanni Cardona <giovanni-8zbq+XIkHIhBDgjK7y7TUQ@public.gmane.org>:
> Hi, how can I add Lua syntax to Bluefish?

Write and place lua.bflang file in bflang directory.
Bflang files are XML files. You can see other bflang files there.
In Linux distributions, the directry is /usr/share/bluefish/bflang/ .
--
Takeshi Hamasaki
--
To unsubscribe from this list: send the line "unsubscribe bluefish-users" in
the body of a message to listar <at> lists.ems.ru
List Web Page: http://www.ems.ru/cgi-bin/listargate.cgi
Main Web Page: http://bluefish.openoffice.nl/


clansco | 12 Jun 2011 11:43
Favicon

Re: Lua support to Bluefish?

On Sat, 11 Jun 2011 11:27:48 +0900
Takeshi Hamasaki <hmatrjp@...> wrote:

> Hi Giovanni,
> 
> 2011/6/11 Giovanni Cardona <giovanni@...>:
> > Hi, how can I add Lua syntax to Bluefish?
> 
> Write and place lua.bflang file in bflang directory.
> Bflang files are XML files. You can see other bflang files there.
> In Linux distributions, the directry is /usr/share/bluefish/bflang/ .

Hi all,
I have added an initial Lua syntax highlighting file in SVN:
https://bluefish.svn.sourceforge.net/svnroot/bluefish/trunk/bluefish/data/bflang/
http://is.gd/QsmWEG

I am not a Lua user, any help would be very welcome.

-Right now there is only a subset of functions and types 
from the C API,
for references I use http://www.lua.org/manual/ 
Copyright © 2006-2008 Lua.org, PUC-Rio. Freely available under the
terms of the Lua license, GPL compatible.

-Right now block comments fails, override by line comment regex.

please comment,
regards,
ff

--

-- 
To unsubscribe from this list: send the line "unsubscribe bluefish-users" in
the body of a message to listar@...
List Web Page: http://www.ems.ru/cgi-bin/listargate.cgi
Main Web Page: http://bluefish.openoffice.nl/

Larry Weldon | 15 Jun 2011 17:19

startup problem

I am having a slight problem in bluefish 2.0.3 in Windows 7. When I start the program it gives me a bluefish.exe – no disk dialog box with the following text and buttons:

“There is no disk in the drive. Please insert disk in drive \Device\Harddisk1\DR1”

buttons are cancel, try again, continue

I have installed it on two Windows 7 machines with the same results. I installed it on a Windows XP machine and a Windows Vista machine, both 32-bit Windows, and the program starts normally. One of the Windows 7 machines is 32-bit the other 64-bit.

I checked the archives for the text of the message without results, although there are results for the message in other gmane groups. Sort of looks like a CYGWIN problem.

As I said it's a slight problem, mostly a nuisance, but I am quite curious if it can be solved because it requires clicking on the continue button four or five times just to get the program started.

Thank you,

--
Larry Weldon
Daniel Leidert | 15 Jun 2011 19:41
Picon

Re: startup problem

Am Mittwoch, den 15.06.2011, 11:19 -0400 schrieb Larry Weldon:
> I am having a slight problem in bluefish 2.0.3 in Windows 7. When I
> start the program it gives me a bluefish.exe – no disk dialog box with
> the following text and buttons:
> 
> “There is no disk in the drive. Please insert disk in drive \Device
> \Harddisk1\DR1”
> 
> buttons are cancel, try again, continue

This is known as https://bugzilla.gnome.org/627792. We do not yet have a
fix. You can subscribe to this bug to be informed, when it has been
fixed. Or you might help to track it down.

Regards, Daniel

--

-- 
To unsubscribe from this list: send the line "unsubscribe bluefish-users" in
the body of a message to listar@...
List Web Page: http://www.ems.ru/cgi-bin/listargate.cgi
Main Web Page: http://bluefish.openoffice.nl/

Olivier Sessink | 23 Jun 2011 22:41
Picon
Gravatar

Re: Lua support to Bluefish?

On 06/12/2011 11:43 AM, clansco wrote:

> -Right now block comments fails, override by line comment regex.

what does a LUA block comment look like and why does it fail?

Olivier
--

-- 
To unsubscribe from this list: send the line "unsubscribe bluefish-users" in
the body of a message to listar@...
List Web Page: http://www.ems.ru/cgi-bin/listargate.cgi
Main Web Page: http://bluefish.openoffice.nl/

Olivier Sessink | 23 Jun 2011 22:42
Picon
Gravatar

Re: Lua support to Bluefish?

On 06/11/2011 05:28 AM, john s wolter wrote:
> How about Lua for quickly re-programming Bluefish.  Lua is an embedded
> language provided as a linkable library and has been used  for creating
> game character behaviors.
>
> I'm suggesting its use for parts of BF.  Portions of BF would not be
> compiled and would be interpreted modules.  The issue of performance
> would determine which parts of BF could be made from LUA.  Those parts
> could be replaced or upgraded as needed.

that is certainly possible. Python would be another choice. However, 
that is going to be a major undertaking, and I don't think anybody on 
the team right now has the time to do this.

Olivier
--

-- 
To unsubscribe from this list: send the line "unsubscribe bluefish-users" in
the body of a message to listar@...
List Web Page: http://www.ems.ru/cgi-bin/listargate.cgi
Main Web Page: http://bluefish.openoffice.nl/

john s wolter | 24 Jun 2011 01:12
Gravatar

Re: Lua support to Bluefish?

Olivier,


I can imagine that is so.  The LUA embedded language would give the ability to add major behaviors to Bluefish.  It's used in WarCraft to program characters and behaviors.  I was also thinking about an Eclipse analogy of the addins but much faster.  Coding and development are a big world.

Cheers,
John S Wolter

On Thu, Jun 23, 2011 at 4:42 PM, Olivier Sessink <olivier <at> bluefish.openoffice.nl> wrote:
On 06/11/2011 05:28 AM, john s wolter wrote:
How about Lua for quickly re-programming Bluefish.  Lua is an embedded
language provided as a linkable library and has been used  for creating
game character behaviors.

I'm suggesting its use for parts of BF.  Portions of BF would not be
compiled and would be interpreted modules.  The issue of performance
would determine which parts of BF could be made from LUA.  Those parts
could be replaced or upgraded as needed.

that is certainly possible. Python would be another choice. However, that is going to be a major undertaking, and I don't think anybody on the team right now has the time to do this.


Olivier
--
To unsubscribe from this list: send the line "unsubscribe bluefish-users" in
the body of a message to listar-QLpEr2logwzILq5++fvS8w@public.gmane.org
List Web Page: http://www.ems.ru/cgi-bin/listargate.cgi
Main Web Page: http://bluefish.openoffice.nl/


clansco | 25 Jun 2011 09:15
Favicon

Re: Lua support to Bluefish?

On Thu, 23 Jun 2011 22:41:36 +0200
Olivier Sessink <olivier@...> wrote:

> On 06/12/2011 11:43 AM, clansco wrote:
> 
> > -Right now block comments fails, override by line comment regex.
> 
> what does a LUA block comment look like and why does it fail?
> 

sorry, solved in Revision: 6709.
line comment: --
block comment: --[[      ]]

regards,
ff
--

-- 
To unsubscribe from this list: send the line "unsubscribe bluefish-users" in
the body of a message to listar@...
List Web Page: http://www.ems.ru/cgi-bin/listargate.cgi
Main Web Page: http://bluefish.openoffice.nl/


Gmane