Re: [scite] Help on using ListBoxx

2007-06-29 Thread Robert Roessler
Yan Feng wrote: I need a new ListBoxx window in SCite IDE ,but I don't know how to instance the object like ListBoxX lbx the VC++ always told me no ListBoxX declared. It is declared and defined in PlatWin.cxx - and it is known to VS 2005, but then I am using local project and solution files.

[scite] replace in many files at once

2007-06-29 Thread Jerome Blondel
Hi, I use SciTE (1.72) to write programs. I have many files open at once in the same session. I wonder if it is possible to do a replace in all the open files at once, for example to change a function name in all the files of the program. ___

Re: [scite] replace in many files at once

2007-06-29 Thread Nis Donatzsky Hansen
You will have to turn on the advanced find-and-replace dialogue, though. find.replace.advanced=1 On 6/29/07, Robert Roessler [EMAIL PROTECTED] wrote: Jerome Blondel wrote: I use SciTE (1.72) to write programs. I have many files open at once in the same session. I wonder if it is possible to

[scite] SciTE text selection and VMware tools copy paste

2007-06-29 Thread Alexander Kriegisch
Good evening, I hope I am not too off-topic with this question, but the problem seems to be SciTE-specific, even though not necessarily a bug. I use a debian'ish Linux (Elive) from within VMware Player 2 on a WinXP host. VMware tools are installed and working, i.e. copy paste to/from the VM and

[scite] TeX (was: Re: Re: Re: [scintilla] styler.GetPropertyInt and keywordlists)

2007-06-29 Thread Neil Hodgson
instanton: After carefully inspecting the ColouriseTeXDoc code I realized that the keywordlists are not used most of the time because most TeX files would not begin with a comment line like %interface=tex or interface=latex and the like. I don't use TeX so just assume the people that

Re: [scite] Help on using ListBoxx

2007-06-29 Thread Neil Hodgson
Yan Feng: I need a new ListBoxx window in SCite IDE ,but I don't know how to instance the object like ListBoxX lbx the VC++ always told me no ListBoxX declared. You shouldn't use ListBoxX directly from SciTE as it is contained within Scintilla and exposed using the autocompletion APIs. Have

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

2007-06-29 Thread Neil Hodgson
Chachereau Nicolas: I think we should decide in which way SciTE reacts when it is sent a message. I think SciTE should be raised above the other windows in some cases, like: find:, goto:, insert:, loadsession:, macrocommand:, macrolist:, menucommand:, open:, output:, replaceall:

Re: [scite] SciTE text selection and VMware tools copy paste

2007-06-29 Thread Neil Hodgson
Alexander Kriegisch: I use a debian'ish Linux (Elive) from within VMware Player 2 on a WinXP host. VMware tools are installed and working, i.e. copy paste to/from the VM and the host system works as expected, with one notable exception: I cannot copy any selected text directly out of SciTE's

Re: [scite] Re: Minimal way to export Lua symbols from SciTE

2007-06-29 Thread Neil Hodgson
steve donovan: Right - I made a linker version script by whacking the lua.symbols And building with -rdynamic -Wl,--version-script lua.map Still works! The executable is a bit larger ;) but not as big as -rdynamic on its own. Builds for me too. Are all the Lua users happy enough with

Re: [scite] File type patterns like Makefile* do not work

2007-06-29 Thread Neil Hodgson
Alexander Kriegisch: file.patterns.make=makefile*;Makefile*;*.mak;configure*;*.mk SciTE globs can only match '*' as a prefix, not as a suffix. I will remove configure* from others.properties. Neil ___ Scite-interest mailing list

Re: [scite] File type patterns like Makefile* do not work

2007-06-29 Thread Alexander Kriegisch
file.patterns.make=makefile*;Makefile*;*.mak;configure*;*.mk SciTE globs can only match '*' as a prefix, not as a suffix. I will remove configure* from others.properties. Well, then why does it work with SciTE for Windows systems? Would you consider making it work on Linux as well instead