Home
last modified time | relevance | path

Searched refs:get (Results 1 – 25 of 484) sorted by relevance

12345678910>>...20

/vim-8.2.3635/src/testdir/
H A Dtest_getvar.vim110 " get({dict}, {key} [, {default}])
117 " get({list}, {idx} [, {default}])
120 call assert_equal(1, get(l, 0, 999))
121 call assert_equal(3, get(l, -1, 999))
122 call assert_equal(999, get(l, 3, 999))
127 " get({lambda}, {what} [, {default}])
133 call assert_equal(0, get(l:L, 'dict'))
137 " get({func}, {what} [, {default}])
143 call assert_equal(0, get(l:F, 'dict'))
146 call assert_equal('', get(NF, 'name'))
[all …]
H A Dtest_vimscript.vim1195 call assert_report('should not get here')
1216 call assert_report('should not get here')
1231 call assert_report('should not get here')
1248 call assert_report('should not get here')
1267 call assert_report('should not get here')
1285 call assert_report('should not get here')
1515 call assert_report('should not get here')
1730 call assert_report('should not get here')
1743 call assert_report('should not get here')
1756 call assert_report('should not get here')
[all …]
H A Dtest_tcl.vim212 " Test $win height (get and set window height)
229 " Test $win cursor (get and set cursor)
544 " Test $buf get (get line(s) from buffer)
550 call assert_equal('first line', TclEval('$buf get top'))
551 call assert_equal('first line', TclEval('$buf get begin'))
553 call assert_equal('last line', TclEval('$buf get last'))
555 call assert_equal('first line', TclEval('$buf get 1'))
556 call assert_equal('two', TclEval('$buf get 2'))
557 call assert_equal('three', TclEval('$buf get 3'))
558 call assert_equal('last line', TclEval('$buf get 4'))
[all …]
H A Dtest_partial.vim319 call assert_equal(Func, get(Cb, 'func'))
320 call assert_equal('MyDictFunc', get(Cb, 'name'))
321 call assert_equal(args, get(Cb, 'args'))
322 call assert_equal(dict, get(Cb, 'dict'))
325 call assert_equal(Func, get(Func, 'func'))
327 call assert_equal([], get(Func, 'args'))
328 call assert_true(empty( get(Func, 'dict')))
332 call assert_equal(dict, get(P, 'dict', dict))
333 call assert_equal(0, get(l:P, 'dict'))
346 let F1 = get(d1, 'f1')
[all …]
H A Dtest_blob.vim24 call assert_equal(0xDE, get(b, 0))
25 call assert_equal(0xEF, get(b, 3))
38 call assert_fails('call get("", 1)', 'E896:')
145 call assert_equal(0x00, get(b, 0))
146 call assert_equal(0x22, get(b, 2, 999))
147 call assert_equal(0x44, get(b, 4))
148 call assert_equal(0x44, get(b, -1))
149 call assert_equal(-1, get(b, 5))
150 call assert_equal(999, get(b, 5, 999))
151 call assert_equal(-1, get(b, -8))
[all …]
H A Dterm_util.vim69 " Make a horizontal and vertical split, so that we can get exactly the right
81 let rows = get(a:options, 'rows', 20)
82 let cols = get(a:options, 'cols', 75)
83 let statusoff = get(a:options, 'statusoff', 1)
85 if get(a:options, 'keep_t_u7', 0)
117 if get(a:options, 'wait_for_ruler', 1)
H A Dtest_system.vim26 " On OS/X we get leading spaces
31 " On Windows we may get a trailing CR.
33 " On OS/X we get leading spaces
132 " On Windows we may get a trailing space and CR.
H A Dtest_ruby.vim126 " Test buffer.line (get or set the current line)
139 " Test buffer.line_number (get current line number)
176 " Test window.width (get or set window height).
190 " Test window.width (get or set window width).
204 " Test window.buffer (get buffer object of a window object).
223 " Test Vim::Window.current (get current window object)
240 " Test Vim::Window[n] (get window object of window n)
/vim-8.2.3635/runtime/syntax/
H A Dprogress.vim70 …ord ProgressReserved get-codepage[s] get-coll[ations] get-column get-error-column get-error-row ge…
179 …erate-pbe-key generate-pbe-salt generate-random-key generate-uuid get get-attribute get-attribute-…
180 …word ProgressOperator get-binary-data get-bits get-blue[-value] get-browse-col[umn] get-buffer-han…
181 …rogressOperator get-callback-proc-context get-callback-proc-name get-cgi-list get-cgi-long-value g…
182 …ogressOperator get-config-value get-curr[ent] get-dataset-buffer get-dir get-document-element get-…
183 …ogressOperator get-firs[t] get-float get-green[-value] get-header-entr[y] get-index-by-namespace-n…
184 …ressOperator get-localname-by-index get-long get-message get-next get-node get-number get-parent g…
185 …ressOperator get-qname-by-index get-red[-value] get-rel[ation] get-repositioned-row get-rgb[-value…
186 …ord ProgressOperator get-signature get-size get-socket-option get-source-buffer get-string get-tab…
187 …ord ProgressOperator get-text-width[-chars] get-text-width-p[ixels] get-top-buffer get-type-by-ind…
[all …]
H A Dbaan.vim1085 syn keyword baanBshell get.argc
1191 syn keyword baanBshell get.row
1192 syn keyword baanBshell get.col
1193 syn keyword baanBshell get.cp
1276 syn keyword baanBshell get.gc
1302 syn keyword baanBshell get.gtext
1304 syn keyword baanBshell get.line
1308 syn keyword baanBshell get.arc
1309 syn keyword baanBshell get.pie
1349 syn keyword baanBshell get.var
[all …]
H A Dgo.vim36 return get(g:, 'go_highlight_extra_types', 0)
40 return get(g:, 'go_highlight_space_tab_error', 0)
48 return get(g:, 'go_highlight_operators', 0)
52 return get(g:, 'go_highlight_functions', 0)
60 return get(g:, 'go_highlight_function_calls', 0)
64 return get(g:, 'go_highlight_fields', 0)
68 return get(g:, 'go_highlight_types', 0)
72 return get(g:, 'go_highlight_build_constraints', 0)
76 return get(g:, 'go_highlight_string_spellcheck', 1)
80 return get(g:, 'go_highlight_format_strings', 1)
[all …]
H A Dcontext.vim18 let s:context_include = get(b:, 'context_include', get(g:, 'context_include', {'xml': 'XML'}))
60 if get(b:, 'context_metapost', get(g:, 'context_metapost', 1))
75 if get(b:, 'context_lua', get(g:, 'context_lua', 1))
H A Djess.vim48 syn keyword jessFunc get get-fact-duplication
49 syn keyword jessFunc get-member get-multithreaded-io
50 syn keyword jessFunc get-reset-globals get-salience-evaluation
H A Dxpm.vim38 " get the 3rd value: colors = number of colors
40 " get the 4th value: cpp = number of character per pixel
57 " get chars = <cpp> length string representing the pixels
61 " now get color, first try 'c' key if any (color visual)
/vim-8.2.3635/runtime/doc/
H A Dusr_41.txt648 get() get an item without error for wrong index
680 get() get an entry without an error for a wrong key
823 getftype() get the kind of a file
825 getfsize() get the size of a file
879 win_gettype() get type of window
966 input() get a line from the user
1003 digraph_get() get |digraph|
1009 maparg() get rhs of a mapping
1188 mode() get current editing mode
1189 state() get current busy state
[all …]
H A Dif_mzsch.txt197 (get-buff-line {linenr} [buffer])
204 (get-buff-line-list {start} {end} [buffer])
209 string-list is #f or null, the lines get
213 (get-buff-name [buffer]) Get a buffer's text name.
214 (get-buff-num [buffer]) Get a buffer's number.
215 (get-buff-size [buffer]) Get buffer line count.
223 (get-next-buff [buffer]) Get next buffer.
239 (get-win-num [window]) Get window number.
240 (get-win-by-num {windownum}) Get window by its number.
242 (get-win-height [window])
[all …]
H A Dusr_20.txt99 You thought of executing a : or / command, but changed your mind. To get rid
103 <Esc> is the universal "get out" key. Unfortunately, in the good old
120 How short can a command get? There are 26 letters, and many more commands.
192 match it found (alphabetically). If you press <Tab> again, you get: >
217 When you type ":set i" instead of ":edit i" and press <Tab> you get: >
221 Hey, why didn't you get ":set info.txt"? That's because Vim has context
241 it out to see how it works. In some situations you will not get what you
243 completion was not implemented for that situation. In that case you will get
275 will get ":edit info".
278 The 'wildmenu' option can be used to get a menu-like list of matches.
/vim-8.2.3635/runtime/compiler/
H A Dcontext.vim18 if get(b:, 'context_ignore_makefile', get(g:, 'context_ignore_makefile', 0)) ||
23 let &l:makeprg = get(b:, 'context_mtxrun', get(g:, 'context_mtxrun', 'mtxrun'))
25 \ . (get(b:, 'context_synctex', get(g:, 'context_synctex', 0)) ? '1' : '0')
26 \ . ' ' . get(b:, 'context_extra_options', get(g:, 'context_extra_options', ''))
/vim-8.2.3635/runtime/autoload/
H A Dcontext.vim99 …\ 'exit_cb' : function(get(b:, 'context_callback', get(g:, 'context_callback', 'context#callbac…
121 call call(get(b:, 'context_callback', get(g:, 'context_callback', 'context#callback')),
159 return get(b:, 'context_mtxrun', get(g:, 'context_mtxrun', 'mtxrun'))
161 \ . ' --synctex=' . (get(b:, 'context_synctex', get(g:, 'context_synctex', 0)) ? '1' : '0')
162 \ . ' ' . get(b:, 'context_extra_options', get(g:, 'context_extra_options', ''))
H A Dclojurecomplete.vim12get","get-in","get-method","get-proxy-class","get-thread-bindings","get-validator","group-by","hal…
/vim-8.2.3635/src/po/
H A Den_GB.po293 msgid "E616: vim_SelFile: can't get font %s"
294 msgstr "E616: vim_SelFile: cannot get font %s"
467 msgid "E298: Didn't get block nr 0?"
468 msgstr "E298: Did not get block nr 0?"
470 msgid "E298: Didn't get block nr 1?"
471 msgstr "E298: Did not get block nr 1?"
473 msgid "E298: Didn't get block nr 2?"
474 msgstr "E298: Did not get block nr 2?"
477 msgid "E304: ml_upd_block0(): Didn't get block 0??"
726 msgid "E483: Can't get temp file name"
[all …]
H A Dlv.po104 msgid "E483: Can't get temp file name"
127 msgid "E616: vim_SelFile: can't get font %s"
133 msgid "E615: vim_SelFile: can't get current directory"
203 msgid "E298: Didn't get block nr 0?"
206 msgid "E298: Didn't get block nr 1?"
209 msgid "E298: Didn't get block nr 2?"
212 msgid "E304: ml_upd_block0(): Didn't get block 0??"
/vim-8.2.3635/runtime/macros/maze/
H A DREADME.txt7 may contain settings and mappings that get in the way.
34 Anyone who can't get the maze.c file to compile, get a new compiler,
36 If you can get it to compile but the maze comes out looking like a fence
/vim-8.2.3635/runtime/spell/th/
H A Dmain.aap34 # We get a plain list of Thai words and make the .dic file from that. The .aff
53 # Generate diff files, so that others can get the OpenOffice files and apply
54 # the diffs to get the Vim versions.
/vim-8.2.3635/runtime/indent/
H A Djulia.vim150 " Note: it should be impossible to get here
166 " Note: it should be impossible to get here
212 " Note: it should be impossible to get here
251 " Note: it should be impossible to get here
256 " Note: it should be impossible to get here
354 let align_brackets = get(g:, "julia_indent_align_brackets", 1)
355 let align_funcargs = get(g:, "julia_indent_align_funcargs", 0)
448 if get(g:, 'julia_indent_align_import', 1)

12345678910>>...20