[scite] [Feature Request] Edit behavior when rectangle selection

2007-08-26 Thread Peng Yi
Hi,

Firstly, I know scintiall can support rectangle selection mode. But when I 
input some text when have rectanle seletion, all selections will be removed and
my input is insert into postion that selection start. I know some editors (for 
example, jedit and textmate) have a feature can insert input into all selected 
columns.

Have Scintilla/Scite this feature? Or this feature can be added in next release?

Thanks.


  

Fussy? Opinionated? Impossible to please? Perfect.  Join Yahoo!'s user panel 
and lay it on us. http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 


___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] Single instance and Director Extension in SciTEGTK

2007-08-26 Thread Neil Hodgson
steve donovan:

 I think we're confident enough for this to be updated.  I'll have a
 look at the needed changes.

   Is there a complete version of this patch?

   Neil
___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] Re: 1.74 crashes under FC7 X86_64

2007-08-26 Thread Neil Hodgson
Me:

Scintilla should probably do something more sensible with invalid
 UTF-8 rather than relying on Pango to fail nicely. However its
 difficult to do anything sensible with invalid UTF-8

   As a work-around, if I have time, I may map invalid bytes in
supposedly UTF-8 text into Private Use Area characters (probably
E000-E080) that should then be properly handled by the platform
although will look a little weird. A better solution would be to have
little hex blobs [C4][E3] like Scintilla's control character display
but that is more work. Whatever is done, there's going to be some
speed/complexity cost.

   Neil
___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] for your consideration, a patch to OpenSelected()

2007-08-26 Thread Neil Hodgson
April White:

 I am not sure where we stand on this change.  I have altered
 SciTEDoc.html but have not uploaded it yet.

   On the basis of not being useful often enough I don't think this
should go in. Of course other people like commands I never use but if
this is seen as needed by others, they should say they want it,
preferably explaining the circumstances in which it would help them.

   Neil
___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] Three proposed patches to SciTE

2007-08-26 Thread Neil Hodgson
steve donovan:

 for (int param = 0; param  maxParam; param++) {
 SString paramText(param + 1);
 SString paramTextVal = props.Get(paramText.c_str());
 if (paramTextVal.length()  0) {
 if (paramTextVal.contains( )) {
 SString val;
 val += \;
 val += paramTextVal;
 val += \;
 paramTextVal = val;
 }
 parameters += paramTextVal;
 parameters +=  ;
 }
 }

   Needs documentation.

 BTW, the existing line in lua.properties is problematic:

 command.go.*.lua=Lua-5.0.exe $(FileNameExt)

   The .exe shouldn't be needed on Windows either.

 The Lua people are now just calling their executable 'lua', now that
 the 5.0-5.1 transistion is over.

  Someone that uses command line Lua on Windows should say whether this works
   command.go.*.lua=lua $(FileNameExt)

   Neil
___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] Three proposed patches to SciTE

2007-08-26 Thread Neil Hodgson
steve donovan:

   if (props.GetInt(find.files.using.extension)) {
   SString ext = *.;
   ext += filePath.Extension().AsInternal();
   memFiles.Insert(ext);
   }

   Since its fairly rare for a language to have a single extension
(C/C++ programmers will often have both .c/.h or similar) I was
expecting a second layer to this. If someone writes up a documentation
patch as well the above can go in.

   Neil
___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] Three proposed patches to SciTE

2007-08-26 Thread Neil Hodgson
   The IDM_* constants are now exposed to Lua like all the SCI_* constants.

   Neil
___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] [Feature Request] Edit behavior when rectangle selection

2007-08-26 Thread Neil Hodgson
Peng Yi:

 Firstly, I know scintiall can support rectangle selection mode.
 But when I input some text when have rectanle seletion, all
 selections will be removed and my input is insert into postion
 that selection start. I know some editors (for example, jedit
 and textmate) have a feature can insert input into all selected
 columns.

 Have Scintilla/Scite this feature? Or this feature can be added in next 
 release?

   Scintilla does not have this feature. It will not be in the next
release. There is a proposed (and rejected) implementation here:
https://sourceforge.net/tracker/index.php?func=detailaid=545068group_id=2439atid=352439

   Neil
___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] [PATCH] SciTE 1.74 GTK+: layout based on native GtkPaned widget

2007-08-26 Thread Stanislav Maslovski
On Sun, Aug 26, 2007 at 10:47:42PM +1000, Neil Hodgson wrote:
 Stanislav Maslovski:
 
  Here goes the 3rd version of the patch (attached).
- focus behaviour corrected (finally?)
- LayoutUI() is now called after the properties have been read
- set minimum size hint to wContent
 
  Please check.
 
With this patch starting SciTE and opening a file doesn't show the
 file: instead the output pane is maximized.

Sounds interesting :) I do not get such a behaviour here. Do you open the
file the usual way from File-Open?

What is your GTK version? I will try to reproduce this.

-- 
Stanislav
___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] [PATCH] SciTE 1.74 GTK+: layout based on native GtkPaned widget

2007-08-26 Thread Stanislav Maslovski
On Sun, Aug 26, 2007 at 05:04:26PM +0400, Stanislav Maslovski wrote:
 On Sun, Aug 26, 2007 at 10:47:42PM +1000, Neil Hodgson wrote:
  Stanislav Maslovski:
  
   Here goes the 3rd version of the patch (attached).
 - focus behaviour corrected (finally?)
 - LayoutUI() is now called after the properties have been read
 - set minimum size hint to wContent
  
   Please check.
  
 With this patch starting SciTE and opening a file doesn't show the
  file: instead the output pane is maximized.
 
 Sounds interesting :) I do not get such a behaviour here. Do you open the
 file the usual way from File-Open?
 
 What is your GTK version? I will try to reproduce this.

No need. I got it. That is because of this change:
  - LayoutUI() is now called after the properties have been read 

Some resizing events got lost this way, I thought it would be harmless,
however. Sorry..

I will correct this.

-- 
Stanislav
___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest


Re: [scite] The system cannot find the file specified

2007-08-26 Thread Lee Gold

 - Original Message -
 From: Robert Roessler [EMAIL PROTECTED]
 To: Discussion of the SciTE editor scite-interest@lyra.org
 Subject: Re: [scite] The system cannot find the file specified
 Date: Sat, 25 Aug 2007 21:51:23 -0700
 
 
 Lee Gold wrote:
  I hit Go for a Python program and I get: The system cannot find 
  the file specified
 
  I see the FAQ entry but still do not understand what to do. 1. 
  Exactly what file do I give it a path to?
 
  2. Exactly where do I enter this path so Scite will know?
 
 0) make sure you have an installed and working Python

Yes it works fine in PythonWin editor.

 
 1) you probably want the main Python executable [directory] on your path

C:\Python21\python.exe

or 

C:\Python21\pythonw.exe

Which one please?

 
 2) the last few chunks of python.properties

Exactly where? I tried a few variations w/no luck.

Sorry I'm a sub-genius - you'll have to tell me exactly what string to place 
exactly where please.

Thanks,
Lee G.





 
 Robert Roessler
 [EMAIL PROTECTED]
 http://www.rftp.com
 ___
 Scite-interest mailing list
 Scite-interest@lyra.org
 http://mailman.lyra.org/mailman/listinfo/scite-interest




-- 
___
Surf the Web in a faster, safer and easier way:
Download Opera 9 at http://www.opera.com

Powered by Outblaze

___
Scite-interest mailing list
Scite-interest@lyra.org
http://mailman.lyra.org/mailman/listinfo/scite-interest