Skip to content

Commit 6e2a8c1

Browse files
authored
Merge pull request #523 from vim-jp/fix-doc
Fix doc
2 parents baeafbc + d721aca commit 6e2a8c1

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

doc/vital/System/Cache/File.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ new([{options}]) *Vital.System.Cache.File.new()*
6161
specified, it will throw an exception.
6262
The 'cache_dir' will automatically be created if missing.
6363

64+
hash({cache_dir}, {str}) *Vital.System.Cache.File.hash()*
65+
66+
Return a hash string of {str} in {cache_dir}.
67+
It is used internally to distinguish.
68+
6469
load({filename}[, {default}]) *Vital.System.Cache.File.load()*
6570

6671
Load a vim object from a {filename}. It uses |sandbox| and |eval| internally

doc/vital/System/Process/System.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ is_supported({options})
2828
Returns 0 if {options.timeout} is specified or {options.background}
2929
is specified in Windows.
3030

31+
*Vital.System.Process.System.shellescape()*
32+
shellescape({string})
33+
Return |shellescape| {string} when {string} contains whitespaces in
34+
Windows. It is equal to |shellescape| in Unix/Linux.
35+
It is used internally to make a command line from argument list.
36+
3137
*Vital.System.Process.System.execute()*
3238
execute({args}, {options})
3339
Returns a result |Dictionary| which contains the following an extra

doc/vital/Vim/Guard.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,10 @@ is_local_variable_supported
124124
Developers should not use this module to store/restore |local-variable|
125125
when this constant is 0.
126126

127+
*Vital.Vim.Guard.is_third_argument_of_getreg_supported*
128+
is_third_argument_of_getreg_supported
129+
1 or 0 to indicate whether the third argument of |getreg()| function.
130+
127131
------------------------------------------------------------------------------
128132
FUNCTIONS *Vital.Vim.Guard-functions*
129133

doc/vital/Vim/Python.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ set_major_version({version}) *Vital.Vim.Python.set_major_version()*
8787
Calling this function does not make any sense in a Vim not compiled
8888
with |+python|/|+python3|.
8989

90-
exec_file({path}[, {version}]) *Vital.Vim.Python.exex_file()*
90+
exec_file({path}[, {version}]) *Vital.Vim.Python.exec_file()*
9191

9292
Return an executable |String| to execute a Python file {path} (|String|)
9393
with a specified {version} of Python.
@@ -102,7 +102,7 @@ exec_file({path}[, {version}]) *Vital.Vim.Python.exex_file()*
102102
execute Python.exec_file('your/python/file.py')
103103
<
104104

105-
exec_code({code}[, {version}]) *Vital.Vim.Python.exex_code()*
105+
exec_code({code}[, {version}]) *Vital.Vim.Python.exec_code()*
106106

107107
Return an executable |String| to execute a Python {code} (|String| or |List|)
108108
with a specified {version} of Python.

0 commit comments

Comments
 (0)