summaryrefslogtreecommitdiff
path: root/server/locale/en-US/libs/@lua/file.lni
diff options
context:
space:
mode:
authorsumneko <sumneko@hotmail.com>2019-05-22 20:28:09 +0800
committersumneko <sumneko@hotmail.com>2019-05-22 20:28:09 +0800
commit86a58617a89ea8f8f7070f8767b51d413d0b0266 (patch)
tree84effe167b3c73e93d7cc378e5cddf95122be0d7 /server/locale/en-US/libs/@lua/file.lni
parent40b6da834d649828cea1a9f59b69657264a8c3c5 (diff)
downloadlua-language-server-86a58617a89ea8f8f7070f8767b51d413d0b0266.zip
保存
Diffstat (limited to 'server/locale/en-US/libs/@lua/file.lni')
-rw-r--r--server/locale/en-US/libs/@lua/file.lni28
1 files changed, 14 insertions, 14 deletions
diff --git a/server/locale/en-US/libs/@lua/file.lni b/server/locale/en-US/libs/@lua/file.lni
index 4200b65f..58bb2278 100644
--- a/server/locale/en-US/libs/@lua/file.lni
+++ b/server/locale/en-US/libs/@lua/file.lni
@@ -15,19 +15,19 @@ end
]]
[[.enums]]
name = 'mode'
-enum = 'n'
+enum = '"n"'
description = 'Reads a numeral and returns it as number.'
``````````
name = 'mode'
-enum = 'a'
+enum = '"a"'
description = 'Reads the whole file.'
``````````
name = 'mode'
-enum = 'l'
+enum = '"l"'
description = 'Reads the next line skipping the end of line.'
``````````
name = 'mode'
-enum = 'L'
+enum = '"L"'
description = 'Reads the next line keeping the end of line.'
``````````
name = 'mode'
@@ -38,19 +38,19 @@ description = 'Reads a string with up to this number of bytes.'
description = 'Reads the `file`, according to the given formats, which specify what to read.'
[[.enums]]
name = 'mode'
-enum = 'n'
+enum = '"n"'
description = 'Reads a numeral and returns it as number.'
``````````
name = 'mode'
-enum = 'a'
+enum = '"a"'
description = 'Reads the whole file.'
``````````
name = 'mode'
-enum = 'l'
+enum = '"l"'
description = 'Reads the next line skipping the end of line.'
``````````
name = 'mode'
-enum = 'L'
+enum = '"L"'
description = 'Reads the next line keeping the end of line.'
``````````
name = 'mode'
@@ -61,30 +61,30 @@ description = 'Reads a string with up to this number of bytes.'
description = 'Sets and gets the file position, measured from the beginning of the file.'
[[.enums]]
name = 'whence'
-enum = 'set'
+enum = '"set"'
description = 'Base is beginning of the file.'
``````````
name = 'whence'
-enum = 'cur'
+enum = '"cur"'
description = 'Base is current position.'
``````````
name = 'whence'
-enum = 'end'
+enum = '"end"'
description = 'Base is end of file.'
[setvbuf]
description = 'Sets the buffering mode for an output file.'
[[.enums]]
name = 'mode'
-enum = 'no'
+enum = '"no"'
description = 'Output operation appears immediately.'
``````````
name = 'mode'
-enum = 'full'
+enum = '"full"'
description = 'Performed only when the buffer is full.'
``````````
name = 'mode'
-enum = 'line'
+enum = '"line"'
description = 'Buffered until a newline is output.'
[write]