Home
last modified time | relevance | path

Searched refs:extra (Results 1 – 25 of 141) sorted by relevance

123456

/vim-8.2.3635/src/testdir/
H A Dtest_packadd.vim230 call writefile(['let extra#value = 99'], extraautodir . '/extra.vim')
326 runtime extra/bar.vim
329 runtime START extra/bar.vim
332 runtime OPT extra/bar.vim
335 runtime PACK extra/bar.vim
338 runtime! PACK extra/bar.vim
341 runtime PACK extra/xxx.vim
345 runtime ALL extra/bar.vim
348 runtime ALL extra/foo.vim
351 runtime! ALL extra/xxx.vim
[all …]
H A Dtest_filechanged.vim16 silent !echo 'extra line' >>Xchanged_r
20 call assert_equal('extra line', getline(2))
33 call assert_equal('extra line', getline(2))
104 silent !echo 'extra line' >>Xchanged_d
110 call assert_equal('extra line', getline(2))
117 call assert_equal('extra line', getline(2))
/vim-8.2.3635/src/
H A Dmove.c990 endcol += extra; in curs_columns()
1125 extra = 0; in curs_columns()
1127 extra = 1; in curs_columns()
1138 extra += 2; in curs_columns()
1158 if (extra > 0) in curs_columns()
1185 if (extra > 0) in curs_columns()
1187 else if (extra < 0) in curs_columns()
1784 int extra = 0; in scroll_cursor_top() local
1865 && extra >= off) in scroll_cursor_top()
1868 extra += i; in scroll_cursor_top()
[all …]
H A Ddrawline.c97 char_u *extra, in get_sign_display_info() argument
134 *pp_extra = extra; in get_sign_display_info()
147 *pp_extra = extra; in get_sign_display_info()
169 extra[n] = ' '; in get_sign_display_info()
170 extra[n] = 0; in get_sign_display_info()
172 STRCAT(extra, " "); in get_sign_display_info()
173 *pp_extra = extra; in get_sign_display_info()
1145 p_extra = extra; in win_line()
1741 rl_mirror(extra); in win_line()
1743 p_extra = extra; in win_line()
[all …]
H A Dregister.c2892 int extra; in str_to_reg() local
2987 extra = (int)STRLEN(y_ptr->y_array[lnum]); in str_to_reg()
2990 extra = 0; in str_to_reg()
2991 s = alloc(i + extra + 1); in str_to_reg()
2994 if (extra) in str_to_reg()
2995 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra); in str_to_reg()
2999 mch_memmove(s + extra, str + start, (size_t)i); in str_to_reg()
3000 extra += i; in str_to_reg()
3001 s[extra] = NUL; in str_to_reg()
3003 while (--extra >= 0) in str_to_reg()
H A Dmemline.c3957 int extra; in ml_flush_line() local
3997 if ((int)dp->db_free >= extra) in ml_flush_line()
4013 dp->db_index[i] -= extra; in ml_flush_line()
4015 dp->db_index[idx] -= extra; in ml_flush_line()
4018 dp->db_free -= extra; in ml_flush_line()
4019 dp->db_txt_start -= extra; in ml_flush_line()
4033 extra += old_prop_len; in ml_flush_line()
4036 if (extra != 0) in ml_flush_line()
5752 int extra = 0; in ml_find_line_or_offset() local
5815 extra = 0; in ml_find_line_or_offset()
[all …]
H A Dif_mzsch.c156 static void mz_fix_cursor(int lo, int hi, int extra);
2547 long extra; in set_buffer_line_list() local
2571 extra = 0; in set_buffer_line_list()
2663 extra--; in set_buffer_line_list()
2694 ++extra; in set_buffer_line_list()
2705 (long)MAXLNUM, (long)extra); in set_buffer_line_list()
2706 changed_lines((linenr_T)lo, 0, (linenr_T)hi, (long)extra); in set_buffer_line_list()
2709 mz_fix_cursor(lo, hi, extra); in set_buffer_line_list()
3682 mz_fix_cursor(int lo, int hi, int extra) in mz_fix_cursor() argument
3690 curwin->w_cursor.lnum += extra; in mz_fix_cursor()
[all …]
H A Dtypval.c1847 int extra = 0; in eval_string() local
1861 extra += 18; in eval_string()
1881 len = (int)(p - *arg + extra); in eval_string()
1956 extra = trans_special(&p, end, flags, NULL); in eval_string()
1957 if (extra != 0) in eval_string()
1959 end += extra; in eval_string()
H A Dterm.c4514 int extra = new_slen - slen; in put_string_in_typebuf() local
4519 if (extra < 0) in put_string_in_typebuf()
4521 del_typebuf(-extra, offset); in put_string_in_typebuf()
4522 else if (extra > 0) in put_string_in_typebuf()
4533 if (extra < 0) in put_string_in_typebuf()
4535 mch_memmove(buf + offset, buf + offset - extra, in put_string_in_typebuf()
4536 (size_t)(*buflen + offset + extra)); in put_string_in_typebuf()
4537 else if (extra > 0) in put_string_in_typebuf()
4541 if (*buflen + extra + new_slen >= bufsize) in put_string_in_typebuf()
4543 mch_memmove(buf + offset + extra, buf + offset, in put_string_in_typebuf()
[all …]
/vim-8.2.3635/.github/workflows/
H A Dci.yml27 extra: [none]
31 extra: nogui
34 extra: nogui
42 extra: testgui
46 extra: asan
50 extra: unittests
53 extra: vimtags
129 if ${{ contains(matrix.extra, 'asan') }}; then
174 if: contains(matrix.extra, 'unittests')
193 if: (!contains(matrix.extra, 'unittests'))
[all …]
/vim-8.2.3635/runtime/syntax/
H A Dcabal.vim108 \ extra-bundled-libraries
109 \ extra-doc-files
110 \ extra-dynamic-library-flavours
111 \ extra-framework-dirs
112 \ extra-ghci-libraries
113 \ extra-lib-dirs
114 \ extra-libraries
115 \ extra-library-flavours
116 \ extra-source-files
117 \ extra-tmp-files
H A Dindent.vim65 \ -eei --extra-expression-indentation
89 \ -neei --no-extra-expression-indentation
/vim-8.2.3635/
H A DFilelist667 # source files for VMS (in the extra archive)
681 # source files for QNX (in the extra archive)
841 # runtime not for unix or extra
852 # DOS runtime (also in the extra archive)
864 # Amiga runtime (also in the extra archive)
884 # runtime files in extra archive
899 # root files for the extra archive
910 # files for DOS binary (also in extra archive)
923 # files for VMS binary (also in extra archive)
931 # binary files for extra archive
[all …]
/vim-8.2.3635/runtime/ftplugin/
H A Dgitcommit.vim55 …let extra = join(map(copy(a:000),exists("*shellescape") ? 'shellescape(v:val)' : "'\"'.v:val.'\"'"…
57 let extra = "-p --stat=".&columns
59 …call system(git." diff --cached --no-color --no-ext-diff ".extra." > ".(exists("*shellescape") ? s…
H A Drust.vim64 " event in the autocommand system, add the above-defined extra excluded
76 " event in the autocommand system, delete the above-defined extra excluded
78 " having no effect if the extra excluded regions are not present in the
/vim-8.2.3635/runtime/doc/
H A Dversion6.txt4006 Patch 6.0.053 (extra)
4078 Patch 6.0.064 (extra)
4144 Patch 6.0.073 (extra)
4371 Patch 6.0.106 (extra)
4376 Patch 6.0.107 (extra)
4428 Patch 6.0.115 (extra)
4434 Patch 6.0.116 (extra)
4440 Patch 6.0.117 (extra)
4469 Patch 6.0.122 (extra)
4489 Patch 6.0.125 (extra)
[all …]
H A Dindent.txt49 'cinwords' Defines keywords that start an extra indent in the next line.
316 NN Indent inside C++ namespace N characters extra compared to a
331 extern "C++") N characters extra compared to a normal block.
409 /N Indent comment lines N characters extra. (default 0).
418 extra unclosed parentheses. When N is 0 or the unclosed
848 To add extra indentation to single-line comments: >
860 To add extra indentation to every PHP lines with N being the number of
876 (Notice the extra indentation between the PHP container markers and the code)
942 Function call arguments will indent 1 extra level. For two-space indentation: >
961 Function arguments in declarations will indent 1 extra level. For two-space
H A Dusr_30.txt77 Vim jumps to line 10, the last line in the file, where there is an extra '}'.
233 A missing ) and ; also cause extra indent. Thus if you get more white
343 With 'smartindent' set, an extra level of indentation is added for each {
344 and removed for each }. An extra level of indentation will also be added for
374 Now you see that you need an extra indent. Type CTRL-T. The result:
635 typing / will remove the extra space.
H A Dft_ada.txt22 6. Extra Plug-ins |ada-extra-plugins|
129 fast, produces a lot of extra information (hence the name "Exuberant Ctags")
483 *ada-extra-plugins*
485 You can optionally install the following extra plug-ins. They work well with
/vim-8.2.3635/runtime/indent/
H A Dhtml.vim666 let extra = -shiftwidth()
674 let extra = shiftwidth()
677 let extra = 4
681 let extra = -shiftwidth()
701 if extra < 0
702 let extra += shiftwidth()
709 " if no extra indent yet...
710 if extra == 0
713 let extra = shiftwidth()
716 let extra = -shiftwidth()
[all …]
/vim-8.2.3635/src/po/
H A DREADME_mingw.txt49 unpacking the extra archive.
82 (5) This is an extra step, ;-). If you want the vim.mo file installed in your
93 (6) Another extra step ;-)). The command:
/vim-8.2.3635/READMEdir/
H A DREADME_vms.txt14 vim-X.X-extra.tar.gz extra source files
/vim-8.2.3635/runtime/pack/dist/opt/justify/plugin/
H A Djustify.vim82 " If joinspaces is set, an extra space is added after '.', '?' and '!'.
83 " If 'cpooptions' include 'j', extra space is only added after '.'.
285 " Add extra spaces from the end
/vim-8.2.3635/runtime/spell/ro/
H A Dro_RO.diff12 ! # ignore extra field (specifies type of word?)
/vim-8.2.3635/src/proto/
H A Dindent.pro23 int inindent(int extra);

123456