Discussion:
Scintilla 3.3.0 released
Neil Hodgson
2013-03-30 04:20:14 UTC
Permalink
Scintilla 3.3.0 is now available from the scintilla.org web site.

Scintilla 3.3.0 is a major feature release allowing tighter integration with platform scrolling by enabling the text area and margin to be separate views which can be scrolled and drawn independently. This is used on Cocoa to allow overlay scrollers and also overshoot then spring back at start and end. Other platforms may use this in the future.

Drawing performance is improved on Cocoa and GTK+ by moving some preparation work to a high-priority idle task. This avoids situations where drawing was started only to find that drawing is needed outside the area being drawn causing the drawing to be abandoned and a complete redraw requested.

SCI_SCROLLRANGE added to allow the container to request scrolling as much as possible of a range into view. Typically used to show a match from a find command.

A potentially troublesome folding bug was fixed that could lead to permanently hidden lines.

Other changes were made and bugs fixed. A detailed list of changes is available on the history page.
http://www.scintilla.org/ScintillaHistory.html

Scintilla uses Mercurial (Hg) for source code control. The repository can be cloned with
hg clone http://hg.code.sf.net/p/scintilla/code scintilla

Thanks to the contributors of code and documentation and to the testers.

Neil
--
You received this message because you are subscribed to the Google Groups "scintilla-interest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scintilla-interest+***@googlegroups.com.
To post to this group, send email to scintilla-***@googlegroups.com.
Visit this group at http://groups.google.com/group/scintilla-interest?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Mark Ceisel
2014-01-21 19:56:22 UTC
Permalink
Scintilla 3.3.0 is now available from the scintilla.org web site.
   Scintilla 3.3.0 is a major feature release allowing tighter integration with platform scrolling by enabling the text area and margin to be separate views which can be scrolled and drawn independently. This is used on Cocoa to allow overlay scrollers and also overshoot then spring back at start and end. Other platforms may use this in the future.
   Drawing performance is improved on Cocoa and GTK+ by moving some preparation work to a high-priority idle task. This avoids situations where drawing was started only to find that drawing is needed outside the area being drawn causing the drawing to be abandoned and a complete redraw requested.
   SCI_SCROLLRANGE added to allow the container to request scrolling as much as possible of a range into view. Typically used to show a match from a find command.
   A potentially troublesome folding bug was fixed that could lead to permanently hidden lines.
   Other changes were made and bugs fixed. A detailed list of changes is available on the history page.
http://www.scintilla.org/ScintillaHistory.html
   Scintilla uses Mercurial (Hg) for source code control. The repository can be cloned with
hg clone http://hg.code.sf.net/p/scintilla/code scintilla
   Thanks to the contributors of code and documentation and to the testers.
   Neil
I finally decided to purchase Scite for OSX however the find in files option does not work.

I tried using the "find.command=grep --line-number "$(find.what)" $(find.files)" for GTK. However this produces the following error:

shell-init: error retrieving current directory: getcwd: cannot access parent directories: Operation not permitted
grep: *.txt: No such file or directory

What is the correct command and do i need to install some other ported tool? from the command line this command works if I substitute in the correct search parameters.

Thanks
Mark
--
You received this message because you are subscribed to the Google Groups "scintilla-interest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scintilla-interest+***@googlegroups.com.
To post to this group, send email to scintilla-***@googlegroups.com.
Visit this group at http://groups.google.com/group/scintilla-interest.
For more options, visit https://groups.google.com/groups/opt_out.
Neil Hodgson
2014-01-21 21:52:34 UTC
Permalink
Post by Mark Ceisel
I finally decided to purchase Scite for OSX however the find in files option does not work.
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Operation not permitted
grep: *.txt: No such file or directory
The issue here is that SciTE is sandboxed so is not allowed to read that directory until you give it permission through the File | Allow Access… dialog.

http://www.scintilla.org/Sandbox.html

Neil
--
You received this message because you are subscribed to the Google Groups "scintilla-interest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scintilla-interest+***@googlegroups.com.
To post to this group, send email to scintilla-***@googlegroups.com.
Visit this group at http://groups.google.com/group/scintilla-interest.
For more options, visit https://groups.google.com/groups/opt_out.
Continue reading on narkive:
Loading...