You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
call<SID>AddOption("taglength", gettext("number of significant characters in a tag name or zero"))
301
302
callappend("$", "\tset tl=" . &tl)
302
303
call<SID>AddOption("tags", gettext("list of file names to search for tags"))
303
-
callappend("$", gettext("\t(global or local to buffer)"))
304
+
callappend("$", "\t" .. s:global_or_local)
304
305
call<SID>OptionG("tag", &tag)
305
306
call<SID>AddOption("tagcase", gettext("how to handle case when searching in tags files:\n\"followic\" to follow 'ignorecase', \"ignore\" or \"match\""))
306
-
callappend("$", "\t(global or local to buffer)")
307
+
callappend("$", "\t" .. s:global_or_local)
307
308
call<SID>OptionG("tc", &tc)
308
309
call<SID>AddOption("tagrelative", gettext("file names in a tags file are relative to the tags file"))
309
310
call<SID>BinOptionG("tr", &tr)
@@ -776,7 +777,7 @@ call <SID>OptionG("km", &km)
776
777
777
778
call<SID>Header(gettext("editing text"))
778
779
call<SID>AddOption("undolevels", gettext("maximum number of changes that can be undone"))
779
-
callappend("$", gettext("\t(global or local to buffer)"))
780
+
callappend("$", "\t" .. s:global_or_local)
780
781
callappend("$", "\tset ul=" . s:old_ul)
781
782
call<SID>AddOption("undofile", gettext("automatically save and restore undo history"))
782
783
call<SID>BinOptionG("udf", &udf)
@@ -836,10 +837,10 @@ if has("insert_expand")
836
837
callappend("$", "\t" .. s:local_to_buffer)
837
838
call<SID>OptionL("ofu")
838
839
call<SID>AddOption("dictionary", gettext("list of dictionary files for keyword completion"))
839
-
callappend("$", gettext("\t(global or local to buffer)"))
840
+
callappend("$", "\t" .. s:global_or_local)
840
841
call<SID>OptionG("dict", &dict)
841
842
call<SID>AddOption("thesaurus", gettext("list of thesaurus files for keyword completion"))
842
-
callappend("$", gettext("\t(global or local to buffer)"))
843
+
callappend("$", "\t" .. s:global_or_local)
843
844
call<SID>OptionG("tsr", &tsr)
844
845
endif
845
846
call<SID>AddOption("infercase", gettext("adjust case of a keyword completion match"))
0 commit comments