Lines Matching +defs:file +defs:type

14  * This file should not change much, it's also used by other editors that
79 /* Functions private to this file */
225 char *file;
227 int type;
229 file = strtok(&cmd[15], " ");
231 type = atoi(strtok(NULL, " "));
232 workshop_change_mark_type(file, markId, type);
239 char *file;
242 file = strtok(&cmd[11], " ");
244 workshop_delete_mark(file, markId);
262 char *file;
264 file = strtok(&cmd[10], " ");
265 workshop_front_file(file);
273 char *file;
278 file = strtok(&cmd[12], " ");
280 line = workshop_get_mark_lineno(file, markid);
283 file, markid, line);
287 char *file;
290 file = strtok(&cmd[9], " ");
292 workshop_goto_line(file, lineno);
295 char *file;
299 file = strtok(&cmd[9], " ");
302 workshop_goto_mark(file, markId, message);
344 char *file;
348 file = strtok(&cmd[9], " ");
351 workshop_load_file(file, line, frameid);
426 char *file;
429 file = strtok(&cmd[11], " ");
431 workshop_reload_file(file, line);
439 char *file;
442 int type;
444 file = strtok(&cmd[8], " ");
447 type = atoi(strtok(NULL, " "));
448 workshop_set_mark(file, line, markId, type);
491 char *file;
493 file = strtok(&cmd[16], " ");
494 workshop_save_sensitivity(file);
554 char *file = strtok(NULL, NOCATGETS("\001"));
563 if (!strcmp(file, NOCATGETS("-"))) {
564 file = NULL;
570 sense, file, left);
648 char *file;
717 if ((file = getenv(NOCATGETS("SPRO_PLUGIN_DEBUG"))) != NULL) {
720 unlink(file);
721 vim_snprintf(buf, sizeof(buf), "date > %s", file);
723 dfd = fopen(file, "a");
794 Atom act_type; /* actual Atom type returned */
1058 if (!strcmp(verb, "build.build") || !strcmp(verb, "build.build-file") ||