Philippe Lhoste | 2 Feb 10:10
Picon

Re: scite built-in lua function overriding


On 31/01/2009 07:37, Larry Wang wrote:
> I have written a small lua script that implements OnDoubleClick() 
> function. It basically outputs some results in the Output Pane, and if I 
> double click on each line, it does some customized things defined in my 
> OnDoubleClick() function. Nothing complicated. However, once 
> OnDoubleClick() is executed, it stays in the memory and overrides other 
> funtions' OnDoubleClick() behaviors.

Apparently, you need the functionality to be active once and for a period, then revert 
back to old functionality.

You can set the OnDoubleClick when calling your Lua script, and then make another little 
script restoring the old OnDoubleClick (or just cancelling the new one, setting it to 
null) on demand.

--

-- 
Philippe Lhoste
--  (near) Paris -- France
--  http://Phi.Lho.free.fr
--  --  --  --  --  --  --  --  --  --  --  --  --  --

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To post to this group, send email to scite-interest <at> googlegroups.com
To unsubscribe from this group, send email to scite-interest+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/scite-interest?hl=en
-~----------~----~----~----~------~----~------~--~---

(Continue reading)

TomB | 2 Feb 18:18
Picon

Re: Mac version of SciTE


> Could you share your binaries?
> I also had to switch to a mac on my work about a year ago, and I still
> miss SciTE dearly. I tried the macport version, but the size of GTK
> and all its dependencies completely ruin the small footprint of the
> SciTE.

Okay, I have zero experience distributing Mac apps, so you may have to
bear with me here. There is a zip file in the files section of the
group with both an app bundle and a readme.txt with some notes about
the binaries. You will probably have to install the GTK+OSX frameworks
(http://www.gtk-osx.org) in order to run it. Let me know if there are
any problems with it.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To post to this group, send email to scite-interest <at> googlegroups.com
To unsubscribe from this group, send email to scite-interest+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/scite-interest?hl=en
-~----------~----~----~----~------~----~------~--~---

mathmhb@gmail | 3 Feb 05:27
Picon

Is it possible to change SciTE toolbar icon size?


hi, does anyone know how to change SciTE toolbar icon size? I want to make  
it bigger. If there is a solution to change it via properties, it would be  
wonderful.

And I am also using SciTE-Ru, which supports user-customized toolbar.  
Sometimes, I have many toolbar icons which cannot put a single toolbar.  
Does anybody know how to make the toolbar "wrap" so as to display more  
toolbar icons?

--

-- 

Best regards,

mathmhb

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To post to this group, send email to scite-interest <at> googlegroups.com
To unsubscribe from this group, send email to scite-interest+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/scite-interest?hl=en
-~----------~----~----~----~------~----~------~--~---

kkwweett | 3 Feb 16:47
Picon

colours in the output pane


Hi,
 I want to change the colour of the strings in the output pane :

At the moment

">gcc firstFivePrimes.c" and
">/.a.out"

are in light blue and

"2 3 5 7 11" is in black

but neither "#0000FF" nor "#000000" are given anywhere in my colour.*
or in my style.*. (colours for editing firstFivePrimes.c are what I
want, as well as the commun background colour of the editing and the
output panes)

How can I change this defaults ?

Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To post to this group, send email to scite-interest <at> googlegroups.com
To unsubscribe from this group, send email to scite-interest+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/scite-interest?hl=en
-~----------~----~----~----~------~----~------~--~---

mozers | 3 Feb 19:43
Picon

Re: colours in the output pane


Tuesday, February 3, 2009, 6:47:02 PM, kkwweett wrote:

>  I want to change the colour of the strings in the output pane :

Change style.errorlist. in others.properties file.
Background colour is set with style.errorlist.32=back:#FFFF80

--

-- 
mozers
<http://scite.net.ru>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To post to this group, send email to scite-interest <at> googlegroups.com
To unsubscribe from this group, send email to scite-interest+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/scite-interest?hl=en
-~----------~----~----~----~------~----~------~--~---

mozers | 3 Feb 19:45
Picon

Re: Is it possible to change SciTE toolbar icon size?


Tuesday, February 3, 2009, 7:27:16 AM, Mathmhb wrote:

> does anyone know how to change SciTE toolbar icon size?
> Does anybody know how to make the toolbar "wrap" so as to display more
> toolbar icons?

Such opportunity is absent.

> And I am also using SciTE-Ru, which supports user-customized toolbar.

1. SciTE-Ru allows to have different toolbars for different programming
languages.

2. In SciTE-Ru is possible to change current toolbar with script.

 .properties file:
--------------------------------------------------------
mytoolbar1=\
New|IDM_NEW|0|\
Open|IDM_OPEN|1|\
Save|IDM_SAVE|2

mytoolbar2=\
Cut|IDM_CUT|4|\
Copy|IDM_COPY|5|\
Paste|IDM_PASTE|6|\
Delete|IDM_CLEAR|7
--------------------------------------------------------

(Continue reading)

kkwweett | 3 Feb 23:01
Picon

Re: colours in the output pane


> Change style.errorlist. in others.properties file.
> Background colour is set with style.errorlist.32=back:#FFFF80

default : style.errorlist.0
command or return status : style.errorlist.4

Thanks mozers
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To post to this group, send email to scite-interest <at> googlegroups.com
To unsubscribe from this group, send email to scite-interest+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/scite-interest?hl=en
-~----------~----~----~----~------~----~------~--~---

mathmhb@gmail | 4 Feb 02:33
Picon

Re: Is it possible to change SciTE toolbar icon size?


Thanks for your reply! I know I can change the toolbar, but the key  
problem is that I can only have one toolbar at any time although I can  
change the toolbar dynamically:-) In fact, I can use GUI.dll to implement  
seperate floating toolbars, but the toolbars do not look nice like the  
native toolbars in SciTE. So I am expecting SciTE or SciTE-Ru to implement  
multiple toolbars in future version:-) This will definitely make SciTE  
more cool! One possible way is to let the users define other toolbars by  
property "user.toolbar2", "user.toolbar3", etc.

在 Wed, 04 Feb 2009 02:45:11 +0800,mozers <mozers <at> gmail.com> 写道:

>
> Tuesday, February 3, 2009, 7:27:16 AM, Mathmhb wrote:
>
>> does anyone know how to change SciTE toolbar icon size?
>> Does anybody know how to make the toolbar "wrap" so as to display more
>> toolbar icons?
>
> Such opportunity is absent.
>
>> And I am also using SciTE-Ru, which supports user-customized toolbar.
>
> 1. SciTE-Ru allows to have different toolbars for different programming
> languages.
>
> 2. In SciTE-Ru is possible to change current toolbar with script.
>
>  .properties file:
> --------------------------------------------------------
(Continue reading)

mathmhb@gmail | 4 Feb 02:39
Picon

Is it possible to change the line skip in SciTE?


In SciTE, we can use Ctrl+Mouse-Wheel to zoom in/out the text. However,  
sometimes, I do not want to change the font size but to change the line  
skip (the distance between two consequent lines). Is there any solution to  
achieve this goal? The solution to this problem may help the users to have  
a better view of lines without switching to bigger fonts. I do not find  
related settings in the documentation of SciTE.

--

-- 

Best regards,

mathmhb

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To post to this group, send email to scite-interest <at> googlegroups.com
To unsubscribe from this group, send email to scite-interest+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/scite-interest?hl=en
-~----------~----~----~----~------~----~------~--~---

Neil Hodgson | 4 Feb 09:20
Picon

Re: Is it possible to change the line skip in SciTE?


mathmhb:

> In SciTE, we can use Ctrl+Mouse-Wheel to zoom in/out the text. However,
> sometimes, I do not want to change the font size but to change the line
> skip (the distance between two consequent lines). Is there any solution to
> achieve this goal?

   There is no direct way to set the line height. It is calculated as
the maximum needed to display any of the current styles. You could set
up a macro to make the size of a style not currently displayed grow
and shrink.

   Neil

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To post to this group, send email to scite-interest <at> googlegroups.com
To unsubscribe from this group, send email to scite-interest+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/scite-interest?hl=en
-~----------~----~----~----~------~----~------~--~---


Gmane