开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 16376|回复: 74
收起左侧

[易语言纯源码] scintilla 火花脚本编辑器4.0.2 双版 2018.01.22

[复制链接]
发表于 2018-1-22 20:22:27 | 显示全部楼层 |阅读模式   上海市上海市
分享源码
界面截图:
是否带模块: 纯源码
备注说明: -
之前模块源码不是我写的版本号是3.7.2,现在官方已经更新到4.0.2了。模块内的常量同步更新到4.0.2。请参考官方文档说明,英文看不懂可以用翻译插件。
本人QQ:793520056,原作者群号:336836724

下面是3.7.2到4.0.2更新的内容,自行翻译

Release 4.0.2
Released 26 October 2017.
Fix HTML lexer handling of Django so that nesting a {{ }} or {% %} Django tag inside of a {# #} Django comment does not break highlighting of rest of file
Fix failure on Cocoa with animated find indicator in large files with macOS 10.13 by disabling animation on 10.13.
Fix Cocoa hang when Scintilla loaded from SMB share on macOS 10.13. Bug #1979.
Release 4.0.1
Released 23 October 2017.
The ILoader interface is defined in its own header ILoader.h as it is not related to lexing so doesn't belong in ILexer.h.
The Scintilla namespace is always active for internal symbols and for the lexer interfaces ILexer4 and IDocument.
The Baan lexer checks that matches to 3rd set of keywords are function calls and leaves as identifiers if not. Baan lexer and folder support #context_on / #context_off preprocessor feature.
The C++ lexer improved preprocessor conformance.
Default value of 0 for undefined preprocessor symbols.
#define A is treated as #define A 1.
"defined A" removes "A" before replacing "defined" with value. Bug #1966.
The Python folder treats triple-quoted f-strings like triple-quoted strings. Bug #1977.
The SQL lexer uses sql.backslash.escapes for double quoted strings. Bug #1968.
Minor undefined behaviour fixed. Bug #1978.
On Cocoa, improve scrolling on macOS 10.12. Bug #1885.
On Cocoa, fix line selection by clicking in the margin when scrolled. Bug #1971.
Release 4.0.0
Released 16 August 2017.
This is an unstable release with changes to interfaces used for lexers and platform access. Some more changes may occur to internal and external interfaces before stability is regained with 4.1.0.
Uses C++14 features. Requires Microsoft Visual C++ 2017, GCC 7, and Clang 4.0 or newer.
Support dropped for GTK+ versions before 2.24.
The lexer interfaces ILexer and ILexerWithSubStyles, along with additional style metadata methods, were merged into ILexer4. Most lexers will need to be updated to match the new interfaces.
The IDocumentWithLineEnd interface was merged into IDocument.
The platform layer interface has changed with unused methods removed, a new mechanism for reporting events, removal of methods that take individual keyboard modifiers, and removal of old timer methods.
Style metadata may be retrieved from lexers that support this through the SCI_GETNAMEDSTYLES, SCI_NAMEOFSTYLE, SCI_TAGSOFSTYLE, and SCI_DESCRIPTIONOFSTYLE APIs.
The Cocoa platform layer uses Automatic Reference Counting (ARC).
The default encoding in Scintilla is UTF-8.
An SCN_AUTOCSELECTIONCHANGE notification is sent when items are highlighted in an autocompletion or user list.
The data parameter to ILoader::AddData made const. Bug #1955.
SciTE's embedded Lua interpreter updated to Lua 5.3.
SciTE allows event handlers to be arbitrary callables, not just functions. Feature #1190.
SciTE allows user.shortcuts to be defined with symbolic Scintilla messages like 'Ctrl+L|SCI_LINEDELETE|'.
The Matlab lexer treats 'end' as a number rather than a keyword when used as a index. This also stops incorrect folding. Bug #1951.
The Matlab folder implements "fold", "fold.comment", and "fold.compact" properties. Bug #1965.
The Rust lexer recognizes 'usize' numeric literal suffixes. Bug #1919.
Ensure redraw when application changes overtype mode so caret change visible even when not blinking. Notify application with SC_UPDATE_SELECTION when overtype changed - previously sent SC_UPDATE_CONTENT.
Fix drawing failure when in wrap mode for delete to start/end of line which affects later lines but did not redraw them. Also fixed drawing for wrap mode on GTK+ 2.x. Bug #1949.
On GTK+ fix drawing problems including incorrect scrollbar redrawing and flickering of text. Bug #1876.
On Linux, both for GTK+ and Qt, the default modifier key for rectangular selection is now Alt. This is the same as Windows and macOS. This was changed from Ctrl as window managers are less likely to intercept Alt+Drag for moving windows than in the past.
On Cocoa, fix doCommandBySelector but avoid double effect of 'delete' key. Bug #1958.
On Qt, the updateUi signal includes the 'updated' flags. No updateUi signal is sent for focus in events. These changes make Qt behave more like the other platforms.
On Qt, dropping files on Scintilla now fires the SCN_URIDROPPED notification instead of inserting text.
On Qt, focus changes send the focusChanged signal. Bug #1957.
On Qt, mouse tracking is reenabled when the window is reshown. Bug #1948.
On Windows, the DirectWrite modes SC_TECHNOLOGY_DIRECTWRITEDC and SC_TECHNOLOGY_DIRECTWRITERETAIN are no longer provisional.
SciTE on macOS fixes a crash when platform-specific and platform-independent session restoration clashed. Bug #1960.
SciTE on GTK+ implements find.close.on.find. Bug #1152, Bug #1254, Bug #1762, Feature #849.
Release 3.7.6
Released 8 August 2017.
This is the first release of the long term branch which avoids using features from C++14 or later in order to support older systems.
The Baan lexer correctly highlights numbers when followed by an operator.
On Cocoa, fix a bug with retrieving encoded bytes.
Release 3.7.5
Released 26 May 2017.
Support dropped for Microsoft Visual C++ 2013 due to increased use of C++11 features.
Added a caret line frame as an alternative visual for highlighting the caret line.
Added "Reverse Selected Lines" feature.
SciTE adds "Select All Bookmarks" command.
SciTE adds a save.path.suggestion setting to suggest a file name when saving an unnamed buffer.
Updated case conversion and character categories to Unicode 9.
The Baan lexer recognizes numeric literals in a more compliant manner including hexadecimal numbers and exponentials.
The Bash lexer recognizes strings in lists in more cases. Bug #1944.
The Fortran lexer recognizes a preprocessor line after a line continuation &. Bug #1935.
The Fortran folder can fold comments. Bug #1936.
The PowerShell lexer recognizes escaped quotes in strings. Bug #1929.
The Python lexer recognizes identifiers more accurately when they include non-ASCII characters.
The Python folder treats comments at the end of the file as separate from the preceding structure.
The YAML lexer recognizes comments in more situations and styles a "..." line like a "---" line. Bug #1931.
Update scroll bar when annotations added, removed, or visibility changed. Feature #1187.
Canceling modes with the Esc key preserves a rectangular selection. Bug #1940.
Builds are made with a sorted list of lexers to be more reproducible. Bug #1946.
On Cocoa, a leak of mouse tracking areas was fixed.
On Cocoa, the autocompletion is 4 pixels wider to avoid text truncation.
On Windows, stop drawing a focus rectangle on the autocompletion list and raise the default list length to 9 items.
SciTE examines at most 1 MB of a file to automatically determine indentation for indent.auto to avoid a lengthy pause when loading very large files.
SciTE user interface uses lighter colours and fewer 3D elements to match current desktop environments.
SciTE sets buffer dirty and shows message when file deleted if load.on.activate on.
SciTE on Windows Find strip Find button works in incremental no-close mode. Bug #1926.
Release 3.7.4
Released 21 March 2017.
Requires a C++11 compiler. GCC 4.8 and MSVC 2015 are supported.
Support dropped for Windows NT 4.
Accessibility support may be queried with SCI_GETACCESSIBILITY. On GTK+, accessibility may be disabled by calling SCI_SETACCESSIBILITY.
Lexer added for "indent" language which is styled as plain text but folded by indentation level.
The Progress ABL lexer handles nested comments where comment starts or ends are adjacent like "/*/*" or "*/*/".
In the Python lexer, improve f-string support. Add support for multiline expressions in triple quoted f-strings. Handle nested "()", "[]", and "{}" in f-string expressions and terminate expression colouring at ":" or "!". End f-string if ending quote is seen in a "{}" expression. Fix terminating single quoted f-string at EOL. Bug #1918.
The VHDL folder folds an "entity" on the first line of the file.
For IMEs, do not clear selected text when there is no composition text to show.
Fix to crash with fold tags where line inserted at start.
Fix to stream selection mode when moving caret up or down. Bug #1905.
Drawing fixes for fold tags include fully drawing lines and not overlapping some drawing and ensuring edges and mark underlines are visible.
Fix Cocoa failure to display accented character chooser for European languages by partially reverting a change made to prevent a crash with Chinese input by special-casing the Cangjie input source. Bug #1881.
Fix potential problems with IME on Cocoa when document contains invalid UTF-8.
Fix crash on Cocoa with OS X 10.9 due to accessibility API not available. Bug #1915.
Improved speed of accessibility code on GTK+ by using additional memory as a cache. Bug #1910.
Fix crash in accessibility code on GTK+ < 3.3.6 caused by previous bug fix. Bug #1907.
Fix to prevent double scrolling on GTK+ with X11. Bug #1901.
SciTE on GTK+ adds an "accessibility" property to allow disabling accessibility on GTK+ as an optimization.
SciTE on GTK+ has changed file chooser behaviour for some actions: overwriting an existing file shows a warning; the default session file name "SciTE.session" is shown and a "*.session" filter is applied; appropriate filters are applied when exporting; the current file name is displayed in "Save As" even when that file no longer exists.
SciTE fixed a bug where, on GTK+, when the output pane had focus, menu commands performed by mouse were sent instead to the edit pane.
SciTE on Windows 8+ further restricts the paths searched for DLLs to the application and system directories which may prevent some binary planting attacks.
Fix failure to load Direct2D on Windows when used on old versions of Windows. Bug #1653.
Release 3.7.3
Released 19 February 2017.
Display block caret over the character at the end of a selection to be similar to other editors.
In SciTE can choose colours for fold markers. Feature #1172.
In SciTE can hide buffer numbers in tabs. Feature #1173.
The Diff lexer recognizes deleted lines that start with "--- ".
The Lua lexer requires the first line to start with "#!" to be treated as a shebang comment, not just "#". Bug #1900.
The Matlab lexer requires block comment start and end to be alone on a line. Bug #1902.
The Python lexer supports f-strings with new styles, allows Unicode identifiers, and no longer allows @1 to be a decorator. Bug #1848.
Fix folding inconsistency when fold header added above a folded part. Avoid unnecessary unfolding when a deletion does not include a line end. Bug #1896.
Fix finalization crash on Cocoa. Bug #1909.
SciTE on GTK+ can have a wide divider between the panes with the split.wide property.
Fix display of autocompletion lists and calltips on GTK+ 3.22 on Wayland. Newer APIs used on GTK+ 3.22 as older APIs were deprecated.
Fix crash in accessibility code on GTK+ due to signal receipt after destruction. Bug #1907.
Make trackpad scrolling work on Wayland. Bug #1901.

火花脚本编辑器4.0.2 双版.zip (800.49 KB, 下载次数: 678)

本帖被以下淘专辑推荐:

签到天数: 7 天

发表于 2024-3-2 13:44:15 | 显示全部楼层   湖南省永州市
开源精神必须支持~
回复 支持 反对

使用道具 举报

结帖率:50% (2/4)

签到天数: 1 天

发表于 2022-6-27 23:53:32 | 显示全部楼层   北京市北京市
这个是做什么的
回复 支持 反对

使用道具 举报

发表于 2022-5-20 15:39:09 | 显示全部楼层   河南省许昌市
感谢分享
回复 支持 反对

使用道具 举报

发表于 2022-4-1 14:43:38 | 显示全部楼层   山西省晋中市
scintilla   火花脚本编辑器4.0.2 双版.zip (8
回复 支持 反对

使用道具 举报

发表于 2022-4-1 14:42:56 | 显示全部楼层   山西省晋中市
不错,我来看看
回复 支持 反对

使用道具 举报

结帖率:60% (3/5)

签到天数: 9 天

发表于 2020-1-6 07:39:25 | 显示全部楼层   江苏省苏州市
谢谢分享谢谢分享谢谢分享谢谢分享
回复 支持 反对

使用道具 举报

结帖率:50% (2/4)

签到天数: 3 天

发表于 2019-12-19 19:06:52 | 显示全部楼层   广东省深圳市
可以再更新一下dll吗?用了最新的原版dll才发现原版的不支持中文高亮。
回复 支持 反对

使用道具 举报

发表于 2019-11-18 17:34:04 | 显示全部楼层   贵州省六盘水市
牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很牛得很
回复 支持 反对

使用道具 举报

签到天数: 10 天

发表于 2019-7-16 07:32:19 | 显示全部楼层   广东省广州市
一如既往的好评,感谢大神么的分享
回复 支持 反对

使用道具 举报

发表于 2018-12-8 14:14:11 | 显示全部楼层   江西省南昌市
一如既往的好评,感谢大神么的分享
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表