Ronald Fischer wrote:
OK, I see - then I will rephrase this question: How can I set the
tabsize
and the intendention size, and make sure that spaces are used for tabs?

Since the current value for the scite global option properties are not
shown, I have no hint about what is the correct syntax for these
options.

The correct syntax is at least in the online help:
http://scintilla.sourceforge.net/SciTEDoc.html

Or download the full version <http://prdownloads.sourceforge.net/scintilla/wscite173.zip?download> which has a SciTEGlobal.properties with all legal properties. I suppose this file is also available in the CVS, if you don't want to get this (rather small) file.

You can then copy and paste the properties you want to modify in your SciTEUser.properties. Remember that the commented out properties in the global file shows the default value, ie. if you just comment them out, it changes nothing (IIRC).

BTW, I also tried the "Help" functions, but they didn't work (Help/Help
does nothing, and Help/Sc1 Help says that the Help file is not
available).

Help > Help (or F1 key) calls the context help on the language word on which the caret is. It needs a properly set property in the language settings. Examples:

# On Windows, if PLAT_WIN
command.help.*.java=http://java.sun.com/j2se/1.4.2/docs/api/java/awt/$(CurrentWord).html
command.help.subsystem.*.java=2


command.help.$(file.patterns.ahk)=$(CurrentWord)!$(autohotkeydir)\AutoHotkey.chm
command.help.subsystem.$(file.patterns.ahk)=4


Help > Sc1 is supposed to open SciTEDoc.html

if PLAT_WIN
  command.scite.help="file://$(SciteDefaultHome)\SciTEDoc.html"
  command.scite.help.subsystem=2
if PLAT_GTK
  command.scite.help=netscape "file://$(SciteDefaultHome)/SciTEDoc.html"

but I suppose it isn't provided with Sc1, so you have to download it and put it in the same directory as Sc1.exe.

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

_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to