Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 369) sorted by relevance

12345678910>>...15

/vim-8.2.3635/src/testdir/
H A Dtest_netbeans.vim49 let g:last = 0
59 let g:last += 3
74 let g:last += 3
90 let g:last += 5
98 let g:last += 3
106 let g:last += 3
114 let g:last += 4
122 let g:last += 4
130 let g:last += 4
138 let g:last += 4
[all …]
H A Dtest_memory_usage.vim44 " Check the last 200ms.
58 return {'last': get(proc.hist, -1), 'max': proc.max}
96 let before = s:monitor_memory_usage(vim.pid).last
109 let lower = after.last * 97 / 100
110 let upper = after.last * 105 / 100
134 let before = s:monitor_memory_usage(vim.pid).last
144 let last = s:monitor_memory_usage(vim.pid).last
147 " The usage may be a bit less than the last value, use 80%.
157 let upper = (after.max + (after.last - before)) * multiplier / 10
158 call assert_inrange(lower, upper, last)
H A Dtest_gn.vim47 " delete first and last chars
48 call setline('.', ['delete first and last chars'])
53 call assert_equal(['elete first and last char'], getline(1,'$'))
189 call setline(1, 'this list is a list with a list of a last.')
192 call assert_equal('last', @")
194 call setline(1, 'this list is a list with a lust of a last.')
197 call assert_equal('lust of a last', @")
H A Dtest_scriptnames.vim9 let last = scripts[-1]
10 call assert_match('\<Xscripting\>', last)
11 let lastnr = substitute(last, '\D*\(\d\+\):.*', '\1', '')
H A Dtest_tcl.vim414 " Test $buf count and $buf last
419 call assert_equal('3', TclEval('$::vim::current(buffer) last'))
421 " Check that $buf count and $buf last differ when ::vim::lbase is 0.
424 call assert_equal('2', TclEval('$::vim::current(buffer) last'))
427 call assert_fails('tcl $::vim::current(buffer) last x', 'wrong # args:')
547 call setline(1, ['first line', 'two', 'three', 'last line'])
552 call assert_equal('last line', TclEval('$buf get bottom'))
553 call assert_equal('last line', TclEval('$buf get last'))
558 call assert_equal('last line', TclEval('$buf get 4'))
562 call assert_equal('three {last line}', TclEval('$buf get 3 last'))
/vim-8.2.3635/src/
H A Dcrypt.c469 int last) in crypt_encode_alloc() argument
498 int last) in crypt_decode_alloc() argument
527 int last) in crypt_encode() argument
542 int last)
556 int last) in crypt_encode_inplace() argument
559 buf, last); in crypt_encode_inplace()
570 int last) in crypt_decode_inplace() argument
777 int last UNUSED)
822 int last UNUSED)
900 int last UNUSED) in crypt_sodium_buffer_encode()
[all …]
H A Devalbuffer.c501 linenr_T first, last; in f_deletebufline() local
526 last = tv_get_lnum_buf(&argvars[2], buf); in f_deletebufline()
528 last = first; in f_deletebufline()
531 || first > buf->b_ml.ml_line_count || last < first) in f_deletebufline()
544 if (last > curbuf->b_ml.ml_line_count) in f_deletebufline()
545 last = curbuf->b_ml.ml_line_count; in f_deletebufline()
546 count = last - first + 1; in f_deletebufline()
556 if (u_save(first - 1, last + 1) == FAIL) in f_deletebufline()
562 for (lnum = first; lnum <= last; ++lnum) in f_deletebufline()
568 if (wp->w_cursor.lnum > last) in f_deletebufline()
H A Dgui_at_fs.c380 save = name[last]; in SFfindFile()
381 name[last] = 0; in SFfindFile()
385 name[last] = save; in SFfindFile()
395 save = name[last]; in SFfindFile()
396 name[last] = 0; in SFfindFile()
400 name[last] = save; in SFfindFile()
903 int last; in SFcheckFiles() local
917 oldc = str[last]; in SFcheckFiles()
918 str[last] = 0; in SFcheckFiles()
1271 int last, in SFwriteStatChar() argument
[all …]
H A Dfold.c234 *lastp = last; in hasFoldingWin()
296 linenr_T last; in foldedCount() local
392 linenr_T last, in opFoldRange() argument
897 int last; in foldMoveTo() local
914 last = FALSE; in foldMoveTo()
937 last = TRUE; in foldMoveTo()
940 if (!last) in foldMoveTo()
945 last = TRUE; in foldMoveTo()
993 if (last) in foldMoveTo()
1520 linenr_T last; in foldMarkAdjustRecurse() local
[all …]
H A Dnetbeans.c932 int lastbyte = last; in nb_partialremove()
1133 pos_T first, last; in nb_do_cmd() local
1187 last = *pos; in nb_do_cmd()
1189 last.lnum, last.col)); in nb_do_cmd()
1191 del_to_lnum = last.lnum; in nb_do_cmd()
1203 if (first.lnum != last.lnum in nb_do_cmd()
1209 if (first.lnum == last.lnum) in nb_do_cmd()
1230 nb_partialremove(last.lnum, 0, last.col); in nb_do_cmd()
2048 pos_T last; in nb_do_cmd() local
2094 last = *pos; in nb_do_cmd()
[all …]
H A Dcmdhist.c457 int last; in del_history_entry() local
470 i = last = idx; in del_history_entry()
484 if (i != last) in del_history_entry()
486 history[histype][last] = *hisptr; in del_history_entry()
489 if (--last < 0) in del_history_entry()
490 last += hislen; in del_history_entry()
H A Dmbyte.c1131 long last; member
1152 if (table[mid].last < c) in intable()
2794 unsigned int last; in utf_class_buf() member
3978 while (first < last) in utf_allow_break_before()
3980 mid = (first + last)/2; in utf_allow_break_before()
3987 last = mid - 1; in utf_allow_break_before()
4028 while (first < last) in utf_allow_break_after()
4030 mid = (first + last)/2; in utf_allow_break_after()
4037 last = mid - 1; in utf_allow_break_after()
5456 long last; member
[all …]
/vim-8.2.3635/src/proto/
H A Dcrypt.pro16 long crypt_encode_alloc(cryptstate_T *state, char_u *from, size_t len, char_u **newptr, int last);
17 long crypt_decode_alloc(cryptstate_T *state, char_u *ptr, long len, char_u **newptr, int last);
18 void crypt_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
19 void crypt_encode_inplace(cryptstate_T *state, char_u *buf, size_t len, int last);
20 void crypt_decode_inplace(cryptstate_T *state, char_u *buf, size_t len, int last);
27 …pt_sodium_buffer_encode(cryptstate_T *state, char_u *from, size_t len, char_u **buf_out, int last);
28 …pt_sodium_buffer_decode(cryptstate_T *state, char_u *from, size_t len, char_u **buf_out, int last);
H A Dcrypt_zip.pro3 void crypt_zip_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
4 void crypt_zip_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
H A Dblowfish.pro2 void crypt_blowfish_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
3 void crypt_blowfish_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
/vim-8.2.3635/runtime/macros/hanoi/
H A Dhanoi.vim32 " S change last char into a $
33 " R change last char in previous line into a n
35 " V add a last line containing a backslash
59 "substitute last character with a n
62 "substitute last character with a $
/vim-8.2.3635/runtime/doc/
H A Dtabpage.txt74 :$tabnew " opens tabpage after the last one
140 :$tabclose " close the last tab page
144 :tabclose $ " close the last tab page
145 :tabclose # " close the last accessed tab page
197 :$tabnext " go to the last tab page
199 :tabnext # " go to the last accessed tab page
213 to the last one.
226 :tabl[ast] Go to the last tab page.
229 g<Tab> Go to the last accessed tab page.
252 Without N the tab page is made the last one. >
[all …]
H A Dmotion.txt209 back from past the end of the line to the last
213 g_ To the last non-blank character of the line and
339 <C-End> Goto line [count], default last line, on the last
800 < jumps to the last known position in a file. See
857 is the location of the cursor when you last exited Vim, '1 the last but one
889 '> `> To the last line or character of the last selected
923 the position will be on the last character.
973 - last insert position '^
974 - last change position '.
975 - last affected text area '[ and ']
[all …]
H A Dvisual.txt64 lines as used for the last Visual operation, but at
77 for the last Visual operation, but at the current
112 gn Search forward for the last used search pattern, like
130 lines from the last line on the screen the text is
165 with the count, in the last line the same number of characters is used as
166 in the last line in the previously highlighted area.
168 one of the last commands to extend the highlighted text, the area will be
171 If you want to highlight exactly the same area as the last time, you can use
365 same amount of text as the last time:
370 last line the same number of characters as in the last line the last time.
[all …]
H A Dwindows.txt117 when the last window also has a status line:
315 If [count] is greater than the last window number the last
318 :$quit " quit the last window
319 :9quit " quit the last window
369 last window on the screen.
436 of windows go to the last window.
626 6. :last 16. :blast to last arg/buf
676 become split windows in the last tab page.
720 Short for ":split | last": split window and go to last
1146 " last but one
[all …]
/vim-8.2.3635/src/xdiff/
H A Dxpatience.c69 } *entries, *first, *last; member
127 if (map->last) { in insert_record()
128 map->last->next = map->entries + index; in insert_record()
129 map->entries[index].previous = map->last; in insert_record()
131 map->last = map->entries + index; in insert_record()
/vim-8.2.3635/runtime/indent/
H A Dsml.vim149 " Indent current line starting with 'in' to last matching 'let'
153 " Indent from last matching module if line matches:
184 " Indent if last line ends with 'sig', 'struct', 'let', 'then', 'else',
189 " Indent if last line ends with 'of', align from 'case'
200 " Indent if last line starts with 'fun', 'case', 'fn'
206 " Don't indent 'let' if last line started with 'fun', 'fn'
/vim-8.2.3635/src/libvterm/src/
H A Dunicode.c72 int last; member
369 if ((int)ucs < table[0].first || (int)ucs > table[max].last) in bisearch()
373 if ((int)ucs > table[mid].last) in bisearch()
/vim-8.2.3635/runtime/tools/
H A Dunicode.vim101 call setline('$', getline('$')[:-2]) " remove last comma
144 call setline('$', getline('$')[:-2]) " remove last comma
186 call setline('$', getline('$')[:-2]) " remove last comma
272 call setline('$', getline('$')[:-2]) " remove last comma
289 let last = first
291 let last = str2nr(tokens[1], 16)
293 for nr in range(first, last)
373 call setline('$', getline('$')[:-2]) " remove last comma
411 call setline('$', getline('$')[:-2]) " remove last comma
/vim-8.2.3635/runtime/syntax/
H A Dprogress.vim73 …ssReserved keycode keyfunc[tion] keylabel keys keyword label last last-even[t] last-key last-of la…
136 …events-proc[edure] add-fields-from add-first add-header-entry add-index-field add-interval add-last
174 syn keyword ProgressOperator find-first find-last find-unique finder first-async[-request] first-bu…
176 syn keyword ProgressOperator first-tab-i[tem] fit-last-column fix-codepage fixed-only flat-button f…
183 …en[-value] get-header-entr[y] get-index-by-namespace-name get-index-by-qname get-iteration get-last
201 …ssOperator large-to-small last-async[-request] last-batch last-child last-form last-object last-pr…
202 syn keyword ProgressOperator last-socket last-tab-i[tem] lc le leading left left-align[ed] left-tri…

12345678910>>...15