diff options
author | 2016-07-04 21:44:50 -0400 | |
---|---|---|
committer | 2016-07-04 21:44:50 -0400 | |
commit | 5a6b12358d5013f294b962ccd0614dbf4447348b (patch) | |
tree | 65f59af15a421cdab6669b9008427ce4c40360b3 /modules/lua/lua.luadoc | |
parent | 64c8a0f0c1ce3ecb5576febe2b6d9aa46e06b6f7 (diff) | |
download | textadept-5a6b12358d5013f294b962ccd0614dbf4447348b.tar.gz textadept-5a6b12358d5013f294b962ccd0614dbf4447348b.zip |
Replaced Lua pattern matching with Regex via Scintilla and TRE.
As a result, changed `ui.find.lua` to `ui.find.regex`
Also removed luautf8 dependency since it is no longer needed.
Regex replacements cannot contain embedded Lua code.
Jumping to "find in files" results selects those results instead of just jumping
to their respective lines.
Diffstat (limited to 'modules/lua/lua.luadoc')
-rw-r--r-- | modules/lua/lua.luadoc | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/modules/lua/lua.luadoc b/modules/lua/lua.luadoc index 4cbe77ea..54316c96 100644 --- a/modules/lua/lua.luadoc +++ b/modules/lua/lua.luadoc @@ -2049,39 +2049,3 @@ function lfs.touch(filepath [, atime [, mtime]]) end -- Returns true if the operation was successful; in case of error, it returns -- nil plus an error string. function lfs.unlock(filehandle[, start[, length]]) end - ---- --- UTF-8 version of `string.byte`. -function utf8.byte(s [, i [, j]]) end - ---- --- UTF-8 version of `string.find`. -function utf8.find(s, pattern [, init [, plain]]) end - ---- --- UTF-8 version of `string.gmatch`. -function utf8.gmatch(s, pattern) end - ---- --- UTF-8 version of `string.gsub`. -function utf8.gsub(s, pattern, repl [, n]) end - ---- --- UTF-8 version of `string.lower`. -function utf8.lower(s) end - ---- --- UTF-8 version of `string.match`. -function utf8.match(s, pattern [, init]) end - ---- --- UTF-8 version of `string.reverse`. -function utf8.reverse(s) end - ---- --- UTF-8 version of `string.sub`. -function utf8.sub(s, i [, j]) end - ---- --- UTF-8 version of `string.upper`. -function utf8.upper(s) end |