Home
last modified time | relevance | path

Searched refs:valid (Results 1 – 25 of 171) sorted by relevance

1234567

/vim-8.2.3635/runtime/syntax/
H A Dspec.vim69 "valid macro names from /usr/lib/rpm/macros
73 "valid _macro names from /usr/lib/rpm/macros
81 "One line macros - valid in all ScriptAreas
87 "TODO %config valid parameters: missingok\|noreplace
88 "TODO %verify valid parameters: \(not\)\= \(md5\|atime\|...\)
93 "valid options for certain section headers
128 "sh-like comment stile, only valid in script part
H A Dremind.vim42 " XXX: why not match only valid dates? Ok, checking for 'Feb the 30' would
43 " be impossible, but at least check for valid months and times.
H A Drhelp.vim83 " Keywords and operators valid only if in math mode {{{2
160 " at src/library/tools/R/Rd2txt.R because they are valid in HTML, although
161 " they do not make valid LaTeX code (e.g. Α versus \Alpha).
H A Dmonk.vim113 syn keyword monkFunc path-nodename path-nodeparentname path->string path-valid?
127 syn keyword monkFunc trim-string-left trim-string-right valid-decimal?
128 syn keyword monkFunc valid-integer? verify-type
H A Djulia.vim41 " because those may or may not be valid in the lookbehind on a case-by-case
51 " List of all valid operator chars up to \UFF (NOTE: they must all be included
57 " List of all valid operator chars above \UFF
77 " A valid julia identifier, more or less
218 " Note: recognition of ℯ, which Vim does not consider a valid identifier, is
H A Dahdl.vim44 " valid integer number formats (decimal, binary, octal, hex)
H A Dhex.vim26 " should not appear in a valid file.
H A Dsrec.vim25 " should not appear in a valid file.
H A Dmeson.vim13 " For instance, it should show errors for syntax that is valid in
/vim-8.2.3635/runtime/autoload/
H A Drubycomplete.vim840 valid = []
841 valid += methods.collect { |m| { :name => m.to_s, :type => 'm' } }
842 valid += variables.collect { |v| { :name => v.to_s, :type => 'v' } }
843 valid += classes.collect { |c| { :name => c.to_s, :type => 't' } }
844 valid += constants.collect { |d| { :name => d.to_s, :type => 'd' } }
845 valid.sort! { |x,y| x[:name] <=> y[:name] }
849 rg = 0..valid.length
853valid[stpos..enpos].each { |c| outp += "{'word':'%s','item':'%s','kind':'%s'}," % [ c[:name], c[:n…
H A Dphpcomplete.vim2016 let valid = 1
2019 let valid = 0
2026 if valid
2028 " file in the response is also valid
2815valid':{'signature':'void | bool','return_type':'bool'},},},'arrayiterator':{'name':'ArrayIterator…
2816 …hrow':{'signature':'Exception $exception | mixed','return_type':'mixed'},'valid':{'signature':'voi…
2828 …_type':'void'},'rewind':{'signature':'void | void','return_type':'void'},'valid':{'signature':'voi…
2833 …_type':'void'},'rewind':{'signature':'void | void','return_type':'void'},'valid':{'signature':'voi…
2834valid':{'signature':'void | boolean','return_type':'boolean'},},},'recursiveiterator':{'name':'Rec…
/vim-8.2.3635/src/testdir/
H A Dtest_cdo.vim115 " List with no valid error entries
129 " List with only one valid entry
186 " List with only one valid entry
H A Dtest_quickfix.vim105 " List only valid entries
252 " Create a list with no valid entries
259 " Create a list with valid entries
273 " Create a list with no valid entries
894 " valid
1379 call assert_equal(1, l[4].valid)
1585 " Tests for setting the 'valid' flag
1591 call assert_equal(0, g:Xgetlist()[0].valid)
1592 " Adding a non-valid entry should not mark the list as having valid entries
1614 call g:Xsetlist([{'text':'Text1', 'valid':1}])
[all …]
H A Dtest_swap.vim183 " Create a valid swapfile by editing a file.
240 " Create a valid swapfile by editing a file.
280 " Create a valid swapfile by editing a file with a special extension.
321 " Create a valid swapfile by editing a file with a special extension.
456 " Create a valid swapfile by editing a file with a special extension.
H A Dtest_options.vim150 set ft=valid-name
151 call assert_equal("valid-name", &filetype)
158 call assert_equal("valid-name", &filetype)
168 set syn=valid-name
169 call assert_equal("valid-name", &syntax)
176 call assert_equal("valid-name", &syntax)
186 call assert_fails(":set kmp=valid-name", "E544:")
187 call assert_fails(":set kmp=valid-name", "valid-name")
H A Dtest_exists.vim10 " valid autocmd group
12 " valid autocmd group with garbage
24 " Non-existing autocmd group and valid autocmd event
/vim-8.2.3635/runtime/indent/testdir/
H A DREADME.txt27 nested statements, etc. with valid syntax.
75 It's best to keep the whole file valid for FILETYPE, so that syntax
/vim-8.2.3635/runtime/doc/
H A Dif_mzsch.txt195 (buff-valid? {object}) Is object a valid buffer? (i.e.
235 (win-valid? {object}) Is object a valid window (i.e. corresponds
H A Dtest_urls.vim62 " Relies on the return code to determine whether a page is valid
/vim-8.2.3635/runtime/compiler/
H A Dxmllint.vim18 CompilerSet makeprg=xmllint\ --valid\ --noout
/vim-8.2.3635/runtime/autoload/dist/
H A Dft.vim156 " This function checks for valid cl syntax in the first five lines.
167 " so doesn't look like valid cl code.
428 " Not an empty line: Doesn't look like valid assembly code.
445 " This function checks for valid Pascal syntax in the first ten lines.
455 " Not an empty line: Doesn't look like valid Pascal code.
/vim-8.2.3635/src/
H A Dquickfix.c913 int valid; member
1300 fields->valid = FALSE; in qf_parse_file_pfx()
1329 fields->valid = FALSE; in qf_parse_line_nomatch()
1422 fields->valid = TRUE; in qf_parse_line()
1648 fields->valid); in qf_init_process_nextline()
2122 qfp->qf_valid = valid; in qf_add_entry()
7178 valid = TRUE; in qf_add_entry_from_dict()
7180 valid = FALSE; in qf_add_entry_from_dict()
7191 valid = FALSE; in qf_add_entry_from_dict()
7213 valid); in qf_add_entry_from_dict()
[all …]
/vim-8.2.3635/runtime/ftplugin/
H A Dabaqus.vim23 " Remove comma from valid filename characters since it is used to
/vim-8.2.3635/runtime/colors/
H A DREADME.txt67 ctermfg and ctermbg values are numbers, which are only valid for the current
/vim-8.2.3635/runtime/indent/
H A Dcdl.vim91 " remove members [a] of [b]:[c]... (inicio remainds valid)

1234567