mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
lua/shared: share more stuff
Leave trim() in vim.lua, because gen_vimdoc.py needs at least one function in there, else it gets confused...
This commit is contained in:
parent
e4c2d85c77
commit
fab81cfb04
@ -422,55 +422,18 @@ vim.types *lua-vim.types*
|
||||
==============================================================================
|
||||
Lua module: vim *lua-vim*
|
||||
|
||||
gsplit({s}, {sep}, {plain}) *vim.gsplit()*
|
||||
Split a string by a given separator. The separator can be a
|
||||
lua pattern, see [1]. Used by |vim.split()|, see there for
|
||||
some examples. See [2] for usage of the plain parameter.
|
||||
|
||||
[1]https://www.lua.org/pil/20.2.html.
|
||||
|
||||
[2]http://lua-users.org/wiki/StringLibraryTutorial
|
||||
|
||||
Parameters: ~
|
||||
{s} String The string to split
|
||||
{sep} String The separator to use
|
||||
{plain} Boolean If `true` , use the separator literally
|
||||
(passed as an argument to String.find)
|
||||
|
||||
Return: ~
|
||||
An iterator over the split components
|
||||
|
||||
split({s}, {sep}, {plain}) *vim.split()*
|
||||
Split a string by a given separator.
|
||||
|
||||
Examples: >
|
||||
|
||||
split(":aa::b:", ":") --> {'','aa','','bb',''}
|
||||
split("axaby", "ab?") --> {'','x','y'}
|
||||
split(x*yz*o, "*", true) --> {'x','yz','o'}
|
||||
<
|
||||
|
||||
Parameters: ~
|
||||
{s} String The string to split
|
||||
{sep} String The separator to use (see |vim.gsplit()|)
|
||||
{plain} Boolean If `true` , use the separator literally
|
||||
(see |vim.gsplit()|)
|
||||
|
||||
Return: ~
|
||||
An array containing the components of the split.
|
||||
|
||||
trim({s}) *vim.trim()*
|
||||
Trim the whitespaces from a string. A whitespace is everything
|
||||
that matches the lua pattern '%s', see
|
||||
|
||||
https://www.lua.org/pil/20.2.html
|
||||
Trim whitespace (Lua pattern "%%s") from both sides of a
|
||||
string.
|
||||
|
||||
Parameters: ~
|
||||
{s} String The string to trim
|
||||
{s} String to trim
|
||||
|
||||
Return: ~
|
||||
The string with all whitespaces trimmed from its beginning
|
||||
and end
|
||||
String with whitespace removed from its beginning and end
|
||||
|
||||
See also: ~
|
||||
https://www.lua.org/pil/20.2.html
|
||||
|
||||
|
||||
|
||||
@ -486,6 +449,44 @@ deepcopy({orig}) *vim.deepcopy()*
|
||||
Return: ~
|
||||
New table of copied keys and (nested) values.
|
||||
|
||||
gsplit({s}, {sep}, {plain}) *vim.gsplit()*
|
||||
Splits a string at each instance of a separator.
|
||||
|
||||
Parameters: ~
|
||||
{s} String to split
|
||||
{sep} Separator string or pattern
|
||||
{plain} If `true` use `sep` literally (passed to
|
||||
String.find)
|
||||
|
||||
Return: ~
|
||||
Iterator over the split components
|
||||
|
||||
See also: ~
|
||||
|vim.split()|
|
||||
https://www.lua.org/pil/20.2.html
|
||||
http://lua-users.org/wiki/StringLibraryTutorial
|
||||
|
||||
split({s}, {sep}, {plain}) *vim.split()*
|
||||
Splits a string at each instance of a separator.
|
||||
|
||||
Examples: >
|
||||
split(":aa::b:", ":") --> {'','aa','','bb',''}
|
||||
split("axaby", "ab?") --> {'','x','y'}
|
||||
split(x*yz*o, "*", true) --> {'x','yz','o'}
|
||||
<
|
||||
|
||||
Parameters: ~
|
||||
{s} String to split
|
||||
{sep} Separator string or pattern
|
||||
{plain} If `true` use `sep` literally (passed to
|
||||
String.find)
|
||||
|
||||
Return: ~
|
||||
List-like table of the split components.
|
||||
|
||||
See also: ~
|
||||
|vim.gsplit()|
|
||||
|
||||
tbl_contains({t}, {value}) *vim.tbl_contains()*
|
||||
Checks if a list-like (vector) table contains `value` .
|
||||
|
||||
|
@ -33,6 +33,70 @@ deepcopy = function(orig)
|
||||
return deepcopy_funcs[type(orig)](orig)
|
||||
end
|
||||
|
||||
--- Splits a string at each instance of a separator.
|
||||
---
|
||||
--@see |vim.split()|
|
||||
--@see https://www.lua.org/pil/20.2.html
|
||||
--@see http://lua-users.org/wiki/StringLibraryTutorial
|
||||
---
|
||||
--@param s String to split
|
||||
--@param sep Separator string or pattern
|
||||
--@param plain If `true` use `sep` literally (passed to String.find)
|
||||
--@returns Iterator over the split components
|
||||
local function gsplit(s, sep, plain)
|
||||
assert(type(s) == "string")
|
||||
assert(type(sep) == "string")
|
||||
assert(type(plain) == "boolean" or type(plain) == "nil")
|
||||
|
||||
local start = 1
|
||||
local done = false
|
||||
|
||||
local function _pass(i, j, ...)
|
||||
if i then
|
||||
assert(j+1 > start, "Infinite loop detected")
|
||||
local seg = s:sub(start, i - 1)
|
||||
start = j + 1
|
||||
return seg, ...
|
||||
else
|
||||
done = true
|
||||
return s:sub(start)
|
||||
end
|
||||
end
|
||||
|
||||
return function()
|
||||
if done then
|
||||
return
|
||||
end
|
||||
if sep == '' then
|
||||
if start == #s then
|
||||
done = true
|
||||
end
|
||||
return _pass(start+1, start)
|
||||
end
|
||||
return _pass(s:find(sep, start, plain))
|
||||
end
|
||||
end
|
||||
|
||||
--- Splits a string at each instance of a separator.
|
||||
---
|
||||
--- Examples:
|
||||
--- <pre>
|
||||
--- split(":aa::b:", ":") --> {'','aa','','bb',''}
|
||||
--- split("axaby", "ab?") --> {'','x','y'}
|
||||
--- split(x*yz*o, "*", true) --> {'x','yz','o'}
|
||||
--- </pre>
|
||||
--
|
||||
--@see |vim.gsplit()|
|
||||
---
|
||||
--@param s String to split
|
||||
--@param sep Separator string or pattern
|
||||
--@param plain If `true` use `sep` literally (passed to String.find)
|
||||
--@returns List-like table of the split components.
|
||||
local function split(s,sep,plain)
|
||||
local t={} for c in gsplit(s, sep, plain) do table.insert(t,c) end
|
||||
return t
|
||||
end
|
||||
|
||||
--- Checks if a list-like (vector) table contains `value`.
|
||||
---
|
||||
--@param t Table to check
|
||||
@ -106,6 +170,8 @@ end
|
||||
|
||||
local module = {
|
||||
deepcopy = deepcopy,
|
||||
gsplit = gsplit,
|
||||
split = split,
|
||||
tbl_contains = tbl_contains,
|
||||
tbl_extend = tbl_extend,
|
||||
tbl_flatten = tbl_flatten,
|
||||
|
@ -154,80 +154,14 @@ local function _update_package_paths()
|
||||
last_nvim_paths = cur_nvim_paths
|
||||
end
|
||||
|
||||
---Split a string by a given separator. The separator can be a lua pattern, see [1].
|
||||
---Used by |vim.split()|, see there for some examples. See [2]
|
||||
---for usage of the plain parameter.
|
||||
--- Trim whitespace (Lua pattern "%%s") from both sides of a string.
|
||||
---
|
||||
--- [1] https://www.lua.org/pil/20.2.html.
|
||||
---
|
||||
--- [2] http://lua-users.org/wiki/StringLibraryTutorial
|
||||
--@param s String The string to split
|
||||
--@param sep String The separator to use
|
||||
--@param plain Boolean If `true`, use the separator literally
|
||||
---(passed as an argument to String.find)
|
||||
--@returns An iterator over the split components
|
||||
local function gsplit(s, sep, plain)
|
||||
assert(type(s) == "string")
|
||||
assert(type(sep) == "string")
|
||||
assert(type(plain) == "boolean" or type(plain) == "nil")
|
||||
|
||||
local start = 1
|
||||
local done = false
|
||||
|
||||
local function _pass(i, j, ...)
|
||||
if i then
|
||||
assert(j+1 > start, "Infinite loop detected")
|
||||
local seg = s:sub(start, i - 1)
|
||||
start = j + 1
|
||||
return seg, ...
|
||||
else
|
||||
done = true
|
||||
return s:sub(start)
|
||||
end
|
||||
end
|
||||
|
||||
return function()
|
||||
if done then
|
||||
return
|
||||
end
|
||||
if sep == '' then
|
||||
if start == #s then
|
||||
done = true
|
||||
end
|
||||
return _pass(start+1, start)
|
||||
end
|
||||
return _pass(s:find(sep, start, plain))
|
||||
end
|
||||
end
|
||||
|
||||
--- Split a string by a given separator.
|
||||
---
|
||||
--- Examples:
|
||||
--- <pre>
|
||||
--- split(":aa::b:", ":") --> {'','aa','','bb',''}
|
||||
--- split("axaby", "ab?") --> {'','x','y'}
|
||||
--- split(x*yz*o, "*", true) --> {'x','yz','o'}
|
||||
--- </pre>
|
||||
---
|
||||
--@param s String The string to split
|
||||
--@param sep String The separator to use (see |vim.gsplit()|)
|
||||
--@param plain Boolean If `true`, use the separator literally
|
||||
---(see |vim.gsplit()|)
|
||||
--@returns An array containing the components of the split.
|
||||
local function split(s,sep,plain)
|
||||
local t={} for c in gsplit(s, sep, plain) do table.insert(t,c) end
|
||||
return t
|
||||
end
|
||||
|
||||
--- Trim the whitespaces from a string. A whitespace is everything that
|
||||
--- matches the lua pattern '%%s', see
|
||||
---
|
||||
--- https://www.lua.org/pil/20.2.html
|
||||
--@param s String The string to trim
|
||||
--@returns The string with all whitespaces trimmed from its beginning and end
|
||||
--@see https://www.lua.org/pil/20.2.html
|
||||
--@param s String to trim
|
||||
--@returns String with whitespace removed from its beginning and end
|
||||
local function trim(s)
|
||||
assert(type(s) == "string", "Only strings can be trimmed")
|
||||
local result = s:gsub("^%s+", ""):gsub("%s+$", "")
|
||||
assert(type(s) == 'string', 'Only strings can be trimmed')
|
||||
local result = s:gsub('^%s+', ''):gsub('%s+$', '')
|
||||
return result
|
||||
end
|
||||
|
||||
@ -248,8 +182,6 @@ local module = {
|
||||
_os_proc_info = _os_proc_info,
|
||||
_system = _system,
|
||||
trim = trim,
|
||||
split = split,
|
||||
gsplit = gsplit,
|
||||
}
|
||||
|
||||
setmetatable(module, {
|
||||
|
Loading…
Reference in New Issue
Block a user