File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,11 @@ new([{options}]) *Vital.System.Cache.File.new()*
61
61
specified, it will throw an exception.
62
62
The 'cache_dir' will automatically be created if missing.
63
63
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
+
64
69
load({filename} [, {default} ]) *Vital.System.Cache.File.load()*
65
70
66
71
Load a vim object from a {filename} . It uses | sandbox | and | eval | internally
Original file line number Diff line number Diff line change @@ -28,6 +28,12 @@ is_supported({options})
28
28
Returns 0 if {options.timeout} is specified or {options.background}
29
29
is specified in Windows.
30
30
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
+
31
37
*Vital.System.Process.System.execute()*
32
38
execute({args} , {options} )
33
39
Returns a result | Dictionary | which contains the following an extra
Original file line number Diff line number Diff line change @@ -124,6 +124,10 @@ is_local_variable_supported
124
124
Developers should not use this module to store/restore | local-variable |
125
125
when this constant is 0.
126
126
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
+
127
131
------------------------------------------------------------------------------
128
132
FUNCTIONS *Vital.Vim.Guard-functions*
129
133
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ set_major_version({version}) *Vital.Vim.Python.set_major_version()*
87
87
Calling this function does not make any sense in a Vim not compiled
88
88
with | +python | /| +python3 | .
89
89
90
- exec_file({path} [, {version} ]) *Vital.Vim.Python.exex_file ()*
90
+ exec_file({path} [, {version} ]) *Vital.Vim.Python.exec_file ()*
91
91
92
92
Return an executable | String | to execute a Python file {path} (| String | )
93
93
with a specified {version} of Python.
@@ -102,7 +102,7 @@ exec_file({path}[, {version}]) *Vital.Vim.Python.exex_file()*
102
102
execute Python.exec_file('your/python/file.py')
103
103
<
104
104
105
- exec_code({code} [, {version} ]) *Vital.Vim.Python.exex_code ()*
105
+ exec_code({code} [, {version} ]) *Vital.Vim.Python.exec_code ()*
106
106
107
107
Return an executable | String | to execute a Python {code} (| String | or | List | )
108
108
with a specified {version} of Python.
You can’t perform that action at this time.
0 commit comments