Home
last modified time | relevance | path

Searched refs:module (Results 1 – 25 of 142) sorted by relevance

123456

/vim-8.2.3635/runtime/syntax/
H A Dnginx.vim769 " 3rd party module list:
860 " Nginx module for Brotli compression
983 " This module is based on the standard Nginx Memcached module, with some additonal features
1201 " ZeroMQ logger module for nginx
1426 " Nginx module to parse php sessions
1621 " Use this module to perform simple caching
1860 " Shibboleth auth request module for nginx
1902 " Nginx upstream module for Sphinx 2.x
2074 " NGINX module for L7 DDoS attack mitigation
2165 " Nginx url encoding converting module
[all …]
H A Desterel.vim17 syn region esterelModule start=/module/ end=/end module/ contains=ALLBUT,esterelModule
30 syn keyword esterelStatement module signal sensor end
H A Dfortran.vim218 syn match fortranUnitHeader "\<module\>"
241 syn match fortranUnitHeader "\<end\s*module"
254 syn match fortranType "\<module\ze\s\+procedure\>"
410 …ent fold keepend start="^\s*module\s\+\(procedure\)\@!\z(\a\w*\)" skip="^\([!c*]\|\s*#\).*$" exclu…
411 …transparent fold keepend extend start="^\s*\(elemental \|pure \|impure \|module \|recursive \)\=\s…
412 …transparent fold keepend extend start="^\s*\(elemental \|pure \|impure \|module \|recursive \)\=\s…
420 …sparent fold keepend start="^\s*module\s\+\(procedure\)\@!\z(\a\w*\)" skip="^\s*[!#].*$" excludenl…
421 …transparent fold keepend extend start="^\s*\(elemental \|pure \|impure \|module \|recursive \)\=\s…
422 …transparent fold keepend extend start="^\s*\(elemental \|pure \|impure \|module \|recursive \)\=\s…
H A Docaml.vim129 syn region ocamlModSpec matchgroup=ocamlKeyword start="\<module\>" matchgroup=ocamlModule end="\<…
137 " "module" - somewhat complicated stuff ;-)
138 syn region ocamlModule matchgroup=ocamlKeyword start="\<module\>" matchgroup=ocamlModule end="\<\…
163 syn region ocamlStruct matchgroup=ocamlStructEncl start="\<\(module\s\+\)\=struct\>" matchgroup=o…
165 " "module type"
166 syn region ocamlKeyword start="\<module\>\s*\<type\>\(\s*\<of\>\)\=" matchgroup=ocamlModule end="…
H A Dlftp.vim33 \ lpwd ls mget mirror mkdir module more mput
45 syn match lftpSettingsPrefix contained '\<\%(http\|https\|mirror\|module\):'
114 " module:
H A Dpapp.vim63 syn sync match pappSync grouphere papp_CDATAh "</\(perl\|xperl\|phtml\|macro\|module\)>"
66 syn sync match pappSync grouphere NONE "</\=\(module\|state\|macro\)>"
H A Delm.vim17 syn keyword elmImport exposing as import module where
33 syn match elmModule "^\(module\|import\)\s\+[A-Z][0-9A-Za-z_'-\.]*\(\s\+as\s\+[A-Z][0-9A-Za-z_'-\.]…
/vim-8.2.3635/runtime/indent/
H A Dsml.vim42 let s:letpat = '^\s*\(let\|type\|module\|class\|open\|exception\|val\|include\|external\)\>'
44 let s:lim = '^\s*\(exception\|external\|include\|let\|module\|open\|type\|val\)\>'
45 let s:module = '\<\%(let\|sig\|struct\)\>'
125 " Indent lines starting with 'end' to matching module
127 return s:FindLet(s:module, '', '\<end\>')
153 " Indent from last matching module if line matches:
156 …let lastModule = indent(searchpair(s:module, '', '\<end\>', 'bWn', 'synIDattr(synID(line("."), col…
H A Dverilog.vim14 " of module blocks
109 " Indent after module/function/task/specify/fork blocks
110 elseif last_line =~ '^\s*\<module\>'
113 echo vverb_str "Indent after module statement."
119 echo vverb_str "Indent after a multiple-line module statement."
188 echo vverb_str "De-indent the end of a module."
193 …if last_line !~ '^\s*\<\(function\|task\|specify\|module\|config\|generate\|primitive\|table\)\>' …
H A Dsystemverilog.vim99 " Indent after module/function/task/specify/fork blocks
100 elseif last_line =~ '^\s*\(\<extern\>\s*\)\=\<module\>'
103 echo vverb_str "Indent after module statement."
109 echo vverb_str "Indent after a multiple-line module statement."
187 echo vverb_str "De-indent the end of a module."
192 if last_line !~ '^\s*\<\(function\|task\|specify\|module\|class\|package\)\>' ||
H A Docaml.vim46 let s:letpat = '^\s*\(let\|type\|module\|class\|open\|exception\|val\|include\|external\)\>'
48 let s:lim = '^\s*\(exception\|external\|include\|let\|module\|open\|type\|val\)\>'
49 let s:module = '\<\%(begin\|sig\|struct\|object\)\>'
112 return s:FindPair(s:module, '','\<end\>')
218 let ind = s:FindPair(s:module, '','\<end\>')
H A Drust.vim106 " "* " as the code below would otherwise cause for module scope
172 " cindent before 7.4.355 doesn't do the module scope well at all; e.g.::
196 " At the module scope, inside square brackets only
H A Dfortran.vim26 setlocal indentkeys+==~function,=~subroutine,=~module,=~contains,=~program
131 \ ||prevstat =~? '^\s*'.'module\>\(\s*\procedure\)\@!'
139 \ .'\(function\|subroutine\|module\|submodule\|program\)\>'
/vim-8.2.3635/runtime/doc/
H A Dif_mzsch.txt81 All functionality is provided through module vimext.
85 To avoid clashes with MzScheme, consider using prefix when requiring module,
132 Auto-instantiation of vimext module (can be placed in your |vimrc|): >
164 The 'vimext' module provides access to procedures defined in the MzScheme
177 use module qualifiers to overcome this.
308 Vim requires "racket/base" module for if_mzsch core (fallback to "scheme/base"
309 if it doesn't exist), "r5rs" module for test and "raco ctool" command for
313 raco pkg install scheme-lib # scheme/base module
314 raco pkg install r5rs-lib # r5rs module
H A Dif_pyth.txt10 2. The vim module |python-vim|
132 2. The vim module *python-vim*
135 |python-output| below) via the "vim" module. The vim module implements two
137 module before using it: >
160 Methods of the "vim" module
222 Error object of the "vim" module
233 Constants of the "vim" module
318 module.
351 def __init__(self, module):
352 self.module = module
[all …]
H A Dnetbeans.txt943 work to get the required External Editor module. This is the module which lets
948 For C, C++, and Fortran support you will also need the cpp module. See
949 http://cpp.netbeans.org for information regarding this module.
978 you may need to find another way of obtaining this open source module.
980 You can check if you have this module by opening the Tools->Options dialog
989 There are 2 ways of obtaining the External Editor module. The easiest way
990 is to use the NetBeans Update Center to download and install the module.
991 Unfortunately, some versions do not have this module in their update
993 download sources and build the module. I will try and get the module
997 To download the External Editor sources via CVS and build your own module,
[all …]
H A Dif_ruby.txt10 2. The Vim module |ruby-vim|
84 2. The Vim module *ruby-vim*
86 Ruby code gets all of its access to vim via the "Vim" module.
/vim-8.2.3635/src/
H A Dif_ole.cpp524 char module[MAX_PATH]; in RegisterMe() local
526 ::GetModuleFileName(NULL, module, MAX_PATH); in RegisterMe()
546 SetKeyAndValue(Key, "LocalServer32", module); in RegisterMe()
561 MultiByteToWideChar(CP_ACP, 0, module, -1, w_module, MAX_PATH); in RegisterMe()
/vim-8.2.3635/runtime/autoload/
H A Drubycomplete.vim61 \ '\<\%(module\|class\|if\|for\|while\|until\|case\|unless\|begin' .
84 let [snum,enum] = s:GetBufferRubyEntity(a:name, "module", a:1)
86 let [snum,enum] = s:GetBufferRubyEntity(a:name, "module")
268 "module",
360 … VIM::evaluate( "s:ErrMsg( 'Problem loading module \"%s\", was it already completed?' )" % name )
390 …if /^\s*(module|class|def|include)\s+/.match(ln) || is_const = /^\s*?[A-Z]([A-z]|[1-9])*\s*?[|]{0,…
391 clscnt += 1 if /class|module/.match($1)
/vim-8.2.3635/runtime/ftplugin/
H A Dzimbu.vim121 iabbr <buffer> <expr> module GCUpperSpace("module")
169 \ " | iunabbr <buffer> module" ..
H A Druby.vim27 \ '{\|\<\%(if\|unless\|case\|while\|until\|for\|do\|class\|module\|def\|=\@<!begin\)\>=\@!' .
177 …nnoremap <silent> <buffer> [[ :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>',['rubyModule'…
178 …nnoremap <silent> <buffer> ]] :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>',['rubyModule'…
181 …xnoremap <silent> <buffer> [[ :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>',['rubyModule'…
182 …xnoremap <silent> <buffer> ]] :<C-U>call <SID>searchsyn('\<\%(class\<Bar>module\)\>',['rubyModule'…
H A Dfortran.vim124 \ s:notend . '\<module\>' . s:notprocedure . ':\<end\s*module\>,'.
/vim-8.2.3635/src/GvimExt/
H A Dgvimext.def1 ;gvimdef.def : Declares the module parameters for the DLL.
H A Dgvimext_ming.def1 ;gvimdef_ming.def : Declares the module parameters for the DLL.
/vim-8.2.3635/src/VisVim/
H A DVisVim.def1 ; VisVim.def : Declares the module parameters for the DLL.

123456