Home
last modified time | relevance | path

Searched refs:buff (Results 1 – 15 of 15) sorted by relevance

/vim-8.2.3635/runtime/doc/
H A Dif_mzsch.txt102 :mzscheme (vim-set-buff-line 10 "This is line #10")
113 (vim-set-buff-line 1 "This is line #1")
194 (buff? {object}) Is object a buffer?
197 (get-buff-line {linenr} [buffer])
199 (set-buff-line {linenr} {string} [buffer])
204 (get-buff-line-list {start} {end} [buffer])
207 (set-buff-line-list {start} {end} {string-list} [buffer])
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.
[all …]
H A Dversion6.txt12260 arguments after "buff=1".
/vim-8.2.3635/src/
H A Dos_mswin.c1080 char buff[MAX_PATH]; in PrintDlgProc() local
1088 if (GetDlgItemText(hDlg,i, buff, sizeof(buff))) in PrintDlgProc()
1093 if (GetDlgItemText(hDlg,IDCANCEL, buff, sizeof(buff))) in PrintDlgProc()
1733 WCHAR *buff = NULL; in resolve_reparse_point() local
1770 if (buff == NULL) in resolve_reparse_point()
1777 buff[6] = L'\\'; in resolve_reparse_point()
1778 wp = buff + 6; in resolve_reparse_point()
1781 wp = buff + 4; in resolve_reparse_point()
1783 wp = buff; in resolve_reparse_point()
1790 if (buff != NULL) in resolve_reparse_point()
[all …]
H A Dif_ruby.c1062 char buff[BUFSIZ]; in error_print() local
1111 vim_snprintf(buff, BUFSIZ, "%s: %s", in error_print()
1113 p = strchr(buff, '\n'); in error_print()
1115 emsg(buff); in error_print()
1130 vim_snprintf(buff, BUFSIZ, _("E273: unknown longjmp status %d"), state); in error_print()
1131 emsg(buff); in error_print()
1139 char *buff, *p; in vim_message() local
1145 buff = ALLOCA_N(char, RSTRING_LEN(str) + 1); in vim_message()
1146 strcpy(buff, RSTRING_PTR(str)); in vim_message()
1147 p = strchr(buff, '\n'); in vim_message()
[all …]
H A Dex_cmds2.c158 char_u buff[DIALOG_MSG_SIZE]; in dialog_changed() local
163 dialog_msg(buff, _("Save changes to \"%s\"?"), buf->b_fname); in dialog_changed()
165 ret = vim_dialog_yesnoallcancel(VIM_QUESTION, NULL, buff, 1); in dialog_changed()
167 ret = vim_dialog_yesnocancel(VIM_QUESTION, NULL, buff, 1); in dialog_changed()
H A Dcmdexpand.c968 char_u *buff) // buffer for command string in set_one_cmd_context() argument
980 xp->xp_pattern = buff; in set_one_cmd_context()
981 xp->xp_line = buff; in set_one_cmd_context()
986 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++) in set_one_cmd_context()
1190 p = buff; in set_one_cmd_context()
1192 len = (int)STRLEN(buff); in set_one_cmd_context()
1193 while (*p && p < buff + len) in set_one_cmd_context()
H A Dex_cmds.c2130 char_u buff[DIALOG_MSG_SIZE]; in check_overwrite() local
2132 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); in check_overwrite()
2133 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) in check_overwrite()
2181 char_u buff[DIALOG_MSG_SIZE]; in check_overwrite() local
2183 dialog_msg(buff, in check_overwrite()
2186 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) in check_overwrite()
2338 char_u buff[DIALOG_MSG_SIZE]; in check_readonly() local
2341 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), in check_readonly()
2344 …dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write i… in check_readonly()
2347 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) in check_readonly()
H A Dif_mzsch.c1596 char *buff; in do_flush() local
1599 buff = scheme_get_sized_byte_string_output(curerr, &length); in do_flush()
1603 do_err_output(buff); in do_flush()
1607 buff = scheme_get_sized_byte_string_output(curout, &length); in do_flush()
1610 do_output(buff, length); in do_flush()
H A Dif_lua.c225 int (*dll_luaL_loadbuffer) (lua_State *L, const char *buff, size_t sz, const char *name);
230 int (*dll_luaL_loadbufferx) (lua_State *L, const char *buff, size_t sz, const char *name, const cha…
H A Dex_docmd.c5511 char_u buff[DIALOG_MSG_SIZE]; in check_more() local
5513 vim_snprintf((char *)buff, DIALOG_MSG_SIZE, in check_more()
5516 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES) in check_more()
9253 dialog_msg(char_u *buff, char *format, char_u *fname) in dialog_msg() argument
9257 vim_snprintf((char *)buff, DIALOG_MSG_SIZE, format, fname); in dialog_msg()
H A Dgui_haiku.cc3875 static char buff[buff_size] = {0}; in gui_mch_get_font() local
3876 STRNCPY(buff, font_name, buff_size); in gui_mch_get_font()
3877 STRNCPY(family, strtok(buff, "/\0"), B_FONT_FAMILY_LENGTH); in gui_mch_get_font()
H A Dterminal.c1617 char_u buff[DIALOG_MSG_SIZE]; in term_try_stop_job() local
1620 dialog_msg(buff, _("Kill job in \"%s\"?"), buf_get_fname(buf)); in term_try_stop_job()
1621 ret = vim_dialog_yesnocancel(VIM_QUESTION, NULL, buff, 1); in term_try_stop_job()
/vim-8.2.3635/src/testdir/
H A Dtest_mzscheme.vim36 mz (vim-set-buff-line (vim-eval "line('.')") "1 changed line 1")
/vim-8.2.3635/src/proto/
H A Dex_docmd.pro65 void dialog_msg(char_u *buff, char *format, char_u *fname);
/vim-8.2.3635/runtime/spell/
H A DREADME_en.txt3054 2231) buff-tip