@@ -50,7 +50,7 @@ def get(setting, default=None, scope=SCOPE_ALL):
50
50
51
51
52
52
def set (setting , value , scope = SCOPE_GLOBAL , overwrite = False ):
53
- u""" Store setting in the definied scope
53
+ u""" Store setting in the defined scope
54
54
55
55
WARNING: For the return value, only string are converted to unicode. If a
56
56
different value is received by vim.eval, e.g. a list or dict, no conversion
@@ -60,7 +60,7 @@ def set(setting, value, scope=SCOPE_GLOBAL, overwrite=False):
60
60
:value: the actual value, repr is called on the value to create a string
61
61
representation
62
62
:scope: the scope o the setting/variable
63
- :overwrite: overwrite existing settings (probably user definied settings)
63
+ :overwrite: overwrite existing settings (probably user defined settings)
64
64
65
65
:returns: the new value in case of overwrite==False the current value
66
66
"""
@@ -83,7 +83,7 @@ def set(setting, value, scope=SCOPE_GLOBAL, overwrite=False):
83
83
84
84
85
85
def unset (setting , scope = SCOPE_GLOBAL ):
86
- u""" Unset setting int the definied scope
86
+ u""" Unset setting in the defined scope
87
87
:setting: name of the setting
88
88
:scope: the scope o the setting/variable
89
89
0 commit comments