Home
last modified time | relevance | path

Searched refs:local (Results 1 – 25 of 251) sorted by relevance

1234567891011

/vim-8.2.3635/src/testdir/
H A Dtest_autocmd.vim726 " 12: Setting local autoread"
825 " 19d: Setting local string global-local (to buffer) option"
871 " 20d: Setting local string local (to buffer) option"
910 " 21d: Setting local string global-local (to window) option"
947 " 22d: Setting local string local (to window) option"
1003 " 24b: Setting local number global-local (to buffer) option"
1035 " 25b: Setting local number local (to buffer) option"
1071 " 27b: Setting local number local (to window) option"
1135 " 29b: Setting local boolean global-local (to buffer) option"
1167 " 30b: Setting local boolean local (to buffer) option"
[all …]
H A Dtest_exists.vim132 " Valid local variable
137 " Non-existing local variable
144 " Valid local list
147 " Valid local list item
151 " Invalid local list item
153 " Non-existing local list
156 " Valid local dictionary
159 " Non-existing local dictionary
163 let str = "local"
281 " Existing script-local variable
[all …]
H A Dtest_listchars.vim381 " Test for using a window local value for 'listchars'
386 " set a local value for 'listchars'
389 " When local value is reset, global value should be used
400 " Changing global setting should not change the local setting
404 " when split opening a new window, local value should be copied
407 " clearing local value in one window should not change the other window
425 " changing the global setting should not change the local value
431 " Using setglobal in a window with local setting should not affect the
448 " using a local setting.
467 " Using set in a window with a local setting should change it to use the
[all …]
H A Dtest_expand_func.vim31 " Call in script-local function
46 " Call in script-local function
74 " Call in script-local function
H A Dtest_tagcase.vim64 " Verify that the local setting accepts <empty> but that the global setting
65 " does not. The first of these (setting the local value to <empty>) should
H A Dtest_vim9_script.vim1918 " script-local name.
2564 var local = 'local'
2588 var local = 'local'
3800 var local = 'local'
3842 let s:local = 123
3849 local = 'asdf'
3855 lockvar local
3857 local = 999
3871 var name = 'local'
3873 echo 'local'
[all …]
/vim-8.2.3635/runtime/doc/
H A Dusr_90.txt304 mv /usr/local/bin/vim8 /usr/local/bin/vim
418 rm /usr/local/bin/eview
419 rm /usr/local/bin/evim
420 rm /usr/local/bin/ex
422 rm /usr/local/bin/gvim
423 rm /usr/local/bin/gvim
428 rm /usr/local/bin/rvim
429 rm /usr/local/bin/rvim
430 rm /usr/local/bin/view
431 rm /usr/local/bin/vim
[all …]
H A Dos_unix.txt12 The default help file name is "/usr/local/lib/vim/help.txt"
14 "s:.exrc". Additionally "/usr/local/etc/vimrc" is used first.
15 If "/usr/local/share" exists it is used instead of "/usr/local/lib".
H A Dvim.man366 /usr/local/lib/vim/doc/*.txt
370 /usr/local/lib/vim/doc/tags
377 /usr/local/lib/vim/syntax/*.vim
380 /usr/local/lib/vim/vimrc
385 /usr/local/lib/vim/gvimrc
390 /usr/local/lib/vim/optwin.vim
394 /usr/local/lib/vim/menu.vim
397 /usr/local/lib/vim/bugreport.vim
400 /usr/local/lib/vim/filetype.vim
404 /usr/local/lib/vim/scripts.vim
[all …]
H A Doptions.txt249 Handling of local options *local-options*
331 For buffer-local and window-local options:
850 global or local to buffer |global-local|
990 global or local to buffer |global-local|
1171 global or local to buffer |global-local|
2404 global or local to buffer |global-local|
2593 global or local to buffer |global-local|
2631 global or local to buffer |global-local|
2980 global or local to buffer |global-local|
3017 global or local to buffer |global-local|
[all …]
H A Dif_pyth.txt309 cannot use this object to obtain or set local options' values or
314 buffer-local options and |python-window| objects to access to
315 window-local options.
446 deleting) that provides access to buffer-local options
447 and buffer-local values of |global-local| options. Use
448 |python-window|.options if option is window-local,
450 |global-local| and local value is missing getting it
548 options (read-only) The window-local options. Attribute is
551 window-local options, for buffer-local use
553 |python-options|. If option is |global-local|
[all …]
H A Dvim9.txt72 Note that {cmd} cannot use local variables, since it is parsed
99 - Variables and functions are script-local by default.
224 Functions and variables are script-local by default ~
231 def ThisFunction() # script-local
232 def s:ThisFunction() # script-local
301 Variables can be local to a script, function or code block: >
1073 script-local functions cannot be deleted or redefined
1099 can prepend "s:" to find script-local functions.
1447 become script-local, even when the "s:" prefix is not given.
1497 var localVar = 'local'
[all …]
H A Dmap.txt26 3. Local mappings and functions |script-local|
117 Use the <buffer> argument to remove buffer-local
173 *:map-local* *:map-<buffer>* *E224* *E225*
186 unloaded. Just like local option values.
523 @ indicates a buffer-local mapping
654 local to a buffer. Example: >
1127 *:abbreviate-local* *:abbreviate-<buffer>*
1257 this, they can be made local to the script.
1283 local function or uses a local mapping.
1352 b Command is local to current buffer
[all …]
H A Dvimtutor.man31 /usr/local/lib/vim/tutor/tutor[.language]
34 /usr/local/lib/vim/tutor/tutor.vim
H A Dautocmd.txt17 7. Buffer-local autocommands |autocmd-buflocal|
136 local to the script and use mappings local to the script. When the event is
957 or local scoped.
962 |v:option_oldlocal| has the old local value.
971 Note that when setting a |global-local| string
974 of options (local string options, global-local
975 number options, ...) it is the old local
1162 local options for the terminal window.
1416 7. Buffer-local autocommands *autocmd-buflocal* *autocmd-buffer-local*
1442 :au * <buffer> " list buffer-local autocommands for
[all …]
/vim-8.2.3635/
H A DREADME_VIM9.md20 dictionaries for the arguments and local variables, is never going to be
146 Taking this one step further is also dropping "s:" for script-local variables;
147 everything at the script level is script-local by default. Since this is not
167 possible, if we make local variables shadow commands. That should be OK,
175 var local = 1
179 local += ADD
182 return local
202 var local = 'local variable is not exported, script-local'
207 def LocalFunction() " not exported, script-local
H A D.travis.yml93 - /usr/local/Homebrew/Library/Homebrew/vendor/
94 - /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/
98 - export LUA_PREFIX=/usr/local
104 …- ~/.local/bin/coveralls -b "${SRCDIR}" -x .xs -e "${SRCDIR}"/if_perl.c -e "${SRCDIR}"/xxd -e "${S…
/vim-8.2.3635/src/
H A DINSTALL35 2. make install installation in /usr/local
57 Install Vim in /usr/local:
89 env CFLAGS=-I/usr/local/include LIBS=-lm make
209 Unix: LOCAL HEADERS AND LIBRARIES NOT IN /usr/local
211 Sometimes it is necessary to search different path than /usr/local for locally
212 installed headers (/usr/local/include) and libraries (/usr/local/lib).
215 ./configure --with-local-dir=/stranger
217 ./configure --without-local-dir
H A Dmap.c179 if (local) in showmap()
916 int local; in map_clear() local
919 if (!local && *arg != NUL) in map_clear()
951 if (local) in map_clear_int()
958 if (local) in map_clear_int()
979 if (local) in map_clear_int()
2132 int local; in check_map() local
2137 for (local = 1; local >= 0; --local) in check_map()
2145 if (local) in check_map()
2150 else if (local) in check_map()
[all …]
/vim-8.2.3635/runtime/autoload/
H A Dcontext.vim133 let l:efm = &l:errorformat " Save local errorformat
134 let l:cwd = fnamemodify(getcwd(), ":p") " Save local working directory
170 let l:cwd = fnamemodify(getcwd(), ":p") " Save local working directory
175 finally " Restore local working directory
H A Dpython3complete.vim281 def local(self,loc):
286 """ Copy a scope's declaration only, at the specified indent level - not local variables """
495 newscope.local('%s = %s' % (scp.params[0],scp.parent.name))
514 newscope.local('%s = %s' % (pvar,ptype))
519 for l in scp.locals: newscope.local(l)
562 self.scope.local(loc)
573 self.scope.local(loc)
583 self.scope.local("%s = %s" % (name,stmt))
H A Dpythoncomplete.vim299 def local(self,loc):
304 """ Copy a scope's declaration only, at the specified indent level - not local variables """
513 newscope.local('%s = %s' % (scp.params[0],scp.parent.name))
532 newscope.local('%s = %s' % (pvar,ptype))
537 for l in scp.locals: newscope.local(l)
580 self.scope.local(loc)
591 self.scope.local(loc)
601 self.scope.local("%s = %s" % (name,stmt))
/vim-8.2.3635/runtime/indent/
H A Ddylan.vim50 " local methods indent the shift-width, plus 6 for the 'local'
51 elseif prevline =~? '^\s*local'
H A Deiffel.vim25 setlocal indentkeys+==invariant,=do,=local,=export
32 …|loop\|from\|across\|until\|if\|else\|elseif\|ensure\|require\|check\|do\|local\|invariant\|varian…
33 let s:outdent = '^\s*\(else\|invariant\|variant\|do\|require\|until\|loop\|local\)\>'
/vim-8.2.3635/runtime/ftplugin/
H A Djulia.vim39 " note: the following regex not only recognizes macros, but also local/global keywords.
42 let s:macro_regex = '\%(@\%([#(]\@!\S\)\+\|\<\%(local\|global\)\)\s\+'
54 while attr == 'juliaMacro' || expand('<cword>') =~# '\<\%(global\|local\)\>'

1234567891011