2 Editor high level editing commands
4 Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006,
6 The Free Software Foundation, Inc.
10 Andrew Borodin <aborodin@vmail.ru> 2012
12 This file is part of the Midnight Commander.
14 The Midnight Commander is free software: you can redistribute it
15 and/or modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation, either version 3 of the License,
17 or (at your option) any later version.
19 The Midnight Commander is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
29 * \brief Source: editor high level editing commands
34 /* #define PIPE_BLOCKS_SO_READ_BYTE_BY_BYTE */
45 #include <sys/types.h>
53 #include "lib/global.h"
54 #include "lib/tty/tty.h"
55 #include "lib/tty/key.h" /* XCTRL */
56 #include "lib/mcconfig.h"
58 #include "lib/strutil.h" /* utf string functions */
60 #include "lib/util.h" /* tilde_expand() */
61 #include "lib/vfs/vfs.h"
62 #include "lib/widget.h"
63 #include "lib/event.h" /* mc_event_raise() */
65 #include "lib/charsets.h"
68 #include "src/history.h"
69 #include "src/setup.h" /* option_tab_spacing */
70 #include "src/main.h" /* mactos_t */
72 #include "src/selcodepage.h"
74 #include "src/keybind-defaults.h"
75 #include "src/util.h" /* check_for_default() */
76 #include "src/filemanager/layout.h" /* mc_refresh() */
78 #include "edit-impl.h"
79 #include "editwidget.h"
80 #include "editcmd_dialogs.h"
83 /*** global variables ****************************************************************************/
85 /* search and replace: */
86 int search_create_bookmark
= FALSE
;
88 /* queries on a save */
89 int edit_confirm_save
= 1;
91 /*** file scope macro definitions ****************************************************************/
95 #define TEMP_BUF_LEN 1024
99 /* thanks to Liviu Daia <daia@stoilow.imar.ro> for getting this
100 (and the above) routines to work properly - paul */
102 #define is_digit(x) ((x) >= '0' && (x) <= '9')
104 #define MAIL_DLG_HEIGHT 12
106 #define MAX_WORD_COMPLETIONS 100 /* in listbox */
108 /*** file scope type declarations ****************************************************************/
110 /*** file scope variables ************************************************************************/
112 /*** file scope functions ************************************************************************/
113 /* --------------------------------------------------------------------------------------------- */
115 /* If 0 (quick save) then a) create/truncate <filename> file,
116 b) save to <filename>;
117 if 1 (safe save) then a) save to <tempnam>,
118 b) rename <tempnam> to <filename>;
119 if 2 (do backups) then a) save to <tempnam>,
120 b) rename <filename> to <filename.backup_ext>,
121 c) rename <tempnam> to <filename>. */
123 /* returns 0 on error, -1 on abort */
126 edit_save_file (WEdit
* edit
, const vfs_path_t
* filename_vpath
)
131 int this_save_mode
, fd
= -1;
132 vfs_path_t
*real_filename_vpath
;
133 vfs_path_t
*savename_vpath
= NULL
;
134 const char *start_filename
;
135 const vfs_path_element_t
*vpath_element
;
137 vpath_element
= vfs_path_get_by_index (filename_vpath
, 0);
138 if (vpath_element
== NULL
)
141 start_filename
= vpath_element
->path
;
142 if (*start_filename
== '\0')
145 if (*start_filename
!= PATH_SEP
&& edit
->dir_vpath
!= NULL
)
147 real_filename_vpath
= vfs_path_append_vpath_new (edit
->dir_vpath
, filename_vpath
, NULL
);
151 real_filename_vpath
= vfs_path_clone (filename_vpath
);
154 this_save_mode
= option_save_mode
;
155 if (this_save_mode
!= EDIT_QUICK_SAVE
)
157 if (!vfs_file_is_local (real_filename_vpath
)
158 || (fd
= mc_open (real_filename_vpath
, O_RDONLY
| O_BINARY
)) == -1)
161 * The file does not exists yet, so no safe save or
162 * backup are necessary.
164 this_save_mode
= EDIT_QUICK_SAVE
;
170 if (this_save_mode
== EDIT_QUICK_SAVE
&& !edit
->skip_detach_prompt
)
175 rv
= mc_stat (real_filename_vpath
, &sb
);
176 if (rv
== 0 && sb
.st_nlink
> 1)
178 rv
= edit_query_dialog3 (_("Warning"),
179 _("File has hard-links. Detach before saving?"),
180 _("&Yes"), _("&No"), _("&Cancel"));
184 this_save_mode
= EDIT_SAFE_SAVE
;
187 edit
->skip_detach_prompt
= 1;
190 vfs_path_free (real_filename_vpath
);
195 /* Prevent overwriting changes from other editor sessions. */
196 if (rv
== 0 && edit
->stat1
.st_mtime
!= 0 && edit
->stat1
.st_mtime
!= sb
.st_mtime
)
198 /* The default action is "Cancel". */
201 rv
= edit_query_dialog2 (_("Warning"),
202 _("The file has been modified in the meantime. Save anyway?"),
203 _("&Yes"), _("&Cancel"));
206 vfs_path_free (real_filename_vpath
);
212 if (this_save_mode
!= EDIT_QUICK_SAVE
)
214 char *savedir
, *saveprefix
;
216 savedir
= vfs_path_tokens_get (real_filename_vpath
, 0, -1);
218 savedir
= g_strdup (".");
220 saveprefix
= mc_build_filename (savedir
, "cooledit", NULL
);
222 fd
= mc_mkstemps (&savename_vpath
, saveprefix
, NULL
);
224 if (savename_vpath
== NULL
)
226 vfs_path_free (real_filename_vpath
);
230 * Close for now because mc_mkstemps use pure open system call
231 * to create temporary file and it needs to be reopened by
232 * VFS-aware mc_open().
237 savename_vpath
= vfs_path_clone (real_filename_vpath
);
239 (void) mc_chown (savename_vpath
, edit
->stat1
.st_uid
, edit
->stat1
.st_gid
);
240 (void) mc_chmod (savename_vpath
, edit
->stat1
.st_mode
);
242 fd
= mc_open (savename_vpath
, O_CREAT
| O_WRONLY
| O_TRUNC
| O_BINARY
, edit
->stat1
.st_mode
);
247 p
= edit_get_write_filter (savename_vpath
, real_filename_vpath
);
253 file
= (FILE *) popen (p
, "w");
257 filelen
= edit_write_stream (edit
, file
);
261 if (pclose (file
) != 0)
263 tmp
= g_strdup_printf (_("Error writing to pipe: %s"), p
);
264 edit_error_dialog (_("Error"), tmp
);
273 tmp
= g_strdup_printf (_("Cannot open pipe for writing: %s"), p
);
274 edit_error_dialog (_("Error"), get_sys_error (tmp
));
281 else if (edit
->lb
== LB_ASIS
)
282 { /* do not change line breaks */
285 filelen
= edit
->last_byte
;
286 while (buf
<= (edit
->curs1
>> S_EDIT_BUF_SIZE
) - 1)
288 if (mc_write (fd
, (char *) edit
->buffers1
[buf
], EDIT_BUF_SIZE
) != EDIT_BUF_SIZE
)
296 (fd
, (char *) edit
->buffers1
[buf
],
297 edit
->curs1
& M_EDIT_BUF_SIZE
) != (edit
->curs1
& M_EDIT_BUF_SIZE
))
301 else if (edit
->curs2
)
304 buf
= (edit
->curs2
>> S_EDIT_BUF_SIZE
);
307 (char *) edit
->buffers2
[buf
] + EDIT_BUF_SIZE
-
308 (edit
->curs2
& M_EDIT_BUF_SIZE
) - 1,
309 1 + (edit
->curs2
& M_EDIT_BUF_SIZE
)) != 1 + (edit
->curs2
& M_EDIT_BUF_SIZE
))
317 if (mc_write (fd
, (char *) edit
->buffers2
[buf
], EDIT_BUF_SIZE
) != EDIT_BUF_SIZE
)
329 /* Update the file information, especially the mtime. */
330 if (mc_stat (savename_vpath
, &edit
->stat1
) == -1)
334 { /* change line breaks */
336 const vfs_path_element_t
*path_element
;
340 path_element
= vfs_path_get_by_index (savename_vpath
, -1);
341 file
= (FILE *) fopen (path_element
->path
, "w");
344 filelen
= edit_write_stream (edit
, file
);
351 msg
= g_strdup_printf (_("Cannot open file for writing: %s"), path_element
->path
);
352 edit_error_dialog (_("Error"), msg
);
358 if (filelen
!= edit
->last_byte
)
361 if (this_save_mode
== EDIT_DO_BACKUP
)
363 vfs_path_t
*tmp_vpath
;
367 assert (option_backup_ext
!= NULL
);
369 tmp_vpath
= vfs_path_append_new (real_filename_vpath
, option_backup_ext
, (char *) NULL
);
370 ok
= (mc_rename (real_filename_vpath
, tmp_vpath
) != -1);
371 vfs_path_free (tmp_vpath
);
376 if (this_save_mode
!= EDIT_QUICK_SAVE
)
377 if (mc_rename (savename_vpath
, real_filename_vpath
) == -1)
380 vfs_path_free (real_filename_vpath
);
381 vfs_path_free (savename_vpath
);
384 /* FIXME: Is this safe ?
385 * if (this_save_mode != EDIT_QUICK_SAVE)
386 * mc_unlink (savename);
388 vfs_path_free (real_filename_vpath
);
389 vfs_path_free (savename_vpath
);
393 /* --------------------------------------------------------------------------------------------- */
396 edit_check_newline (WEdit
* edit
)
398 return !(option_check_nl_at_eof
&& edit
->last_byte
> 0
399 && edit_get_byte (edit
, edit
->last_byte
- 1) != '\n'
400 && edit_query_dialog2 (_("Warning"),
401 _("The file you are saving is not finished with a newline"),
402 _("C&ontinue"), _("&Cancel")));
405 /* --------------------------------------------------------------------------------------------- */
408 edit_get_save_file_as (WEdit
* edit
)
411 #define DLG_HEIGHT 14
413 static LineBreaks cur_lb
= LB_ASIS
;
415 char *filename
= vfs_path_to_str (edit
->filename_vpath
);
418 const char *lb_names
[LB_NAMES
] = {
419 N_("&Do not change"),
420 N_("&Unix format (LF)"),
421 N_("&Windows/DOS format (CR LF)"),
422 N_("&Macintosh format (CR)")
425 QuickWidget quick_widgets
[] = {
426 QUICK_BUTTON (6, 10, DLG_HEIGHT
- 3, DLG_HEIGHT
, N_("&Cancel"), B_CANCEL
, NULL
),
427 QUICK_BUTTON (2, 10, DLG_HEIGHT
- 3, DLG_HEIGHT
, N_("&OK"), B_ENTER
, NULL
),
428 QUICK_RADIO (5, DLG_WIDTH
, DLG_HEIGHT
- 8, DLG_HEIGHT
, LB_NAMES
, lb_names
, (int *) &cur_lb
),
429 QUICK_LABEL (3, DLG_WIDTH
, DLG_HEIGHT
- 9, DLG_HEIGHT
, N_("Change line breaks to:")),
430 QUICK_INPUT (3, DLG_WIDTH
, DLG_HEIGHT
- 11, DLG_HEIGHT
, filename
, DLG_WIDTH
- 6, 0,
431 "save-as", &filename_res
),
432 QUICK_LABEL (3, DLG_WIDTH
, DLG_HEIGHT
- 12, DLG_HEIGHT
, N_("Enter file name:")),
436 QuickDialog Quick_options
= {
437 DLG_WIDTH
, DLG_HEIGHT
, -1, -1,
438 N_("Save As"), "[Save File As]",
439 quick_widgets
, NULL
, FALSE
442 if (quick_dialog (&Quick_options
) != B_CANCEL
)
445 vfs_path_t
*ret_vpath
;
448 fname
= tilde_expand (filename_res
);
449 g_free (filename_res
);
450 ret_vpath
= vfs_path_from_str (fname
);
462 /* --------------------------------------------------------------------------------------------- */
464 /** returns 1 on success */
467 edit_save_cmd (WEdit
* edit
)
469 int res
, save_lock
= 0;
471 if (!edit
->locked
&& !edit
->delete_file
)
472 save_lock
= lock_file (edit
->filename_vpath
);
473 res
= edit_save_file (edit
, edit
->filename_vpath
);
475 /* Maintain modify (not save) lock on failure */
476 if ((res
> 0 && edit
->locked
) || save_lock
)
477 edit
->locked
= unlock_file (edit
->filename_vpath
);
479 /* On failure try 'save as', it does locking on its own */
481 return edit_save_as_cmd (edit
);
482 edit
->force
|= REDRAW_COMPLETELY
;
485 edit
->delete_file
= 0;
492 /* --------------------------------------------------------------------------------------------- */
496 * @param edit widget object
497 * @param exp_vpath vfs file path
498 * @return TRUE if file content was successfully loaded, FALSE otherwise
502 edit_load_file_from_filename (WEdit
* edit
, const vfs_path_t
* exp_vpath
)
504 int prev_locked
= edit
->locked
;
505 vfs_path_t
*prev_filename
;
508 prev_filename
= vfs_path_clone (edit
->filename_vpath
);
509 if (!edit_reload (edit
, exp_vpath
))
511 else if (prev_locked
)
512 unlock_file (prev_filename
);
514 vfs_path_free (prev_filename
);
518 /* --------------------------------------------------------------------------------------------- */
521 edit_load_syntax_file (WEdit
* edit
)
523 vfs_path_t
*extdir_vpath
;
528 dir
= query_dialog (_("Syntax file edit"),
529 _("Which syntax file you want to edit?"), D_NORMAL
, 2,
530 _("&User"), _("&System Wide"));
534 vfs_path_build_filename (mc_global
.sysconfig_dir
, "syntax", "Syntax", (char *) NULL
);
535 if (!exist_file (vfs_path_get_last_path_str (extdir_vpath
)))
537 vfs_path_free (extdir_vpath
);
539 vfs_path_build_filename (mc_global
.share_data_dir
, "syntax", "Syntax", (char *) NULL
);
544 vfs_path_t
*user_syntax_file_vpath
;
546 user_syntax_file_vpath
= mc_config_get_full_vpath (EDIT_SYNTAX_FILE
);
547 check_for_default (extdir_vpath
, user_syntax_file_vpath
);
548 edit_load_file_from_filename (edit
, user_syntax_file_vpath
);
549 vfs_path_free (user_syntax_file_vpath
);
552 edit_load_file_from_filename (edit
, extdir_vpath
);
554 vfs_path_free (extdir_vpath
);
557 /* --------------------------------------------------------------------------------------------- */
560 edit_load_menu_file (WEdit
* edit
)
562 vfs_path_t
*buffer_vpath
;
563 vfs_path_t
*menufile_vpath
;
566 dir
= query_dialog (_("Menu edit"),
567 _("Which menu file do you want to edit?"), D_NORMAL
,
568 geteuid () != 0 ? 2 : 3, _("&Local"), _("&User"), _("&System Wide"));
570 menufile_vpath
= vfs_path_build_filename (mc_global
.sysconfig_dir
, EDIT_GLOBAL_MENU
, NULL
);
572 if (!exist_file (vfs_path_get_last_path_str (menufile_vpath
)))
574 vfs_path_free (menufile_vpath
);
575 menufile_vpath
= vfs_path_build_filename (mc_global
.share_data_dir
, EDIT_GLOBAL_MENU
, NULL
);
581 buffer_vpath
= vfs_path_from_str (EDIT_LOCAL_MENU
);
582 check_for_default (menufile_vpath
, buffer_vpath
);
583 chmod (vfs_path_get_last_path_str (buffer_vpath
), 0600);
587 buffer_vpath
= mc_config_get_full_vpath (EDIT_HOME_MENU
);
588 check_for_default (menufile_vpath
, buffer_vpath
);
592 buffer_vpath
= vfs_path_build_filename (mc_global
.sysconfig_dir
, EDIT_GLOBAL_MENU
, NULL
);
593 if (!exist_file (vfs_path_get_last_path_str (buffer_vpath
)))
595 vfs_path_free (buffer_vpath
);
597 vfs_path_build_filename (mc_global
.share_data_dir
, EDIT_GLOBAL_MENU
, NULL
);
602 vfs_path_free (menufile_vpath
);
606 edit_load_file_from_filename (edit
, buffer_vpath
);
608 vfs_path_free (buffer_vpath
);
609 vfs_path_free (menufile_vpath
);
612 /* --------------------------------------------------------------------------------------------- */
615 edit_delete_column_of_text (WEdit
* edit
)
617 long p
, q
, r
, m1
, m2
;
620 eval_marks (edit
, &m1
, &m2
);
621 n
= edit_move_forward (edit
, m1
, 0, m2
) + 1;
622 c
= edit_move_forward3 (edit
, edit_bol (edit
, m1
), 0, m1
);
623 d
= edit_move_forward3 (edit
, edit_bol (edit
, m2
), 0, m2
);
624 b
= max (min (c
, d
), min (edit
->column1
, edit
->column2
));
625 c
= max (c
, max (edit
->column1
, edit
->column2
));
629 r
= edit_bol (edit
, edit
->curs1
);
630 p
= edit_move_forward3 (edit
, r
, b
, 0);
631 q
= edit_move_forward3 (edit
, r
, c
, 0);
636 edit_cursor_move (edit
, p
- edit
->curs1
);
639 /* delete line between margins */
640 if (edit_get_byte (edit
, edit
->curs1
) != '\n')
641 edit_delete (edit
, 1);
645 /* move to next line except on the last delete */
646 edit_cursor_move (edit
, edit_move_forward (edit
, edit
->curs1
, 1, 0) - edit
->curs1
);
650 /* --------------------------------------------------------------------------------------------- */
651 /** if success return 0 */
654 edit_block_delete (WEdit
* edit
)
657 long start_mark
, end_mark
;
659 long curs_line
, c1
, c2
;
661 if (eval_marks (edit
, &start_mark
, &end_mark
))
663 if (edit
->column_highlight
&& edit
->mark2
< 0)
664 edit_mark_cmd (edit
, 0);
665 if ((end_mark
- start_mark
) > option_max_undo
/ 2)
667 /* Warning message with a query to continue or cancel the operation */
668 if (edit_query_dialog2
671 ("Block is large, you may not be able to undo this action"),
672 _("C&ontinue"), _("&Cancel")))
677 c1
= min (edit
->column1
, edit
->column2
);
678 c2
= max (edit
->column1
, edit
->column2
);
682 edit_push_markers (edit
);
684 curs_line
= edit
->curs_line
;
686 curs_pos
= edit
->curs_col
+ edit
->over_col
;
688 /* move cursor to start of selection */
689 edit_cursor_move (edit
, start_mark
- edit
->curs1
);
690 edit_scroll_screen_over_cursor (edit
);
692 if (start_mark
< end_mark
)
694 if (edit
->column_highlight
)
699 edit_mark_cmd (edit
, 0);
700 edit_delete_column_of_text (edit
);
701 /* move cursor to the saved position */
702 edit_move_to_line (edit
, curs_line
);
703 /* calculate line width and cursor position before cut */
704 line_width
= edit_move_forward3 (edit
, edit_bol (edit
, edit
->curs1
), 0,
705 edit_eol (edit
, edit
->curs1
));
706 if (option_cursor_beyond_eol
&& curs_pos
> line_width
)
707 edit
->over_col
= curs_pos
- line_width
;
711 while (count
< end_mark
)
713 edit_delete (edit
, 1);
718 edit_set_markers (edit
, 0, 0, 0, 0);
719 edit
->force
|= REDRAW_PAGE
;
723 /* --------------------------------------------------------------------------------------------- */
725 * Get EOL symbol for searching.
727 * @param edit editor object
732 edit_search_get_current_end_line_char (const WEdit
* edit
)
743 /* --------------------------------------------------------------------------------------------- */
745 * Checking if search condition have BOL(^) or EOL ($) regexp special characters.
747 * @param search search object
748 * @return result of checks.
751 static edit_search_line_t
752 edit_get_search_line_type (mc_search_t
* search
)
754 edit_search_line_t search_line_type
= 0;
756 if (search
->search_type
!= MC_SEARCH_T_REGEX
)
757 return search_line_type
;
759 if (*search
->original
== '^')
760 search_line_type
|= AT_START_LINE
;
762 if (search
->original
[search
->original_len
- 1] == '$')
763 search_line_type
|= AT_END_LINE
;
764 return search_line_type
;
767 /* --------------------------------------------------------------------------------------------- */
769 * Calculating the start position of next line.
771 * @param edit editor object
772 * @param current_pos current position
773 * @param max_pos max position
774 * @param end_string_symbol end of line symbol
775 * @return start position of next line
779 edit_calculate_start_of_next_line (WEdit
* edit
, off_t current_pos
, off_t max_pos
,
780 char end_string_symbol
)
784 for (i
= current_pos
; i
< max_pos
; i
++)
787 if (edit_get_byte (edit
, i
) == end_string_symbol
)
794 /* --------------------------------------------------------------------------------------------- */
796 * Calculating the end position of previous line.
798 * @param edit editor object
799 * @param current_pos current position
800 * @param end_string_symbol end of line symbol
801 * @return end position of previous line
805 edit_calculate_end_of_previous_line (WEdit
* edit
, off_t current_pos
, char end_string_symbol
)
809 for (i
= current_pos
- 1; i
>= 0; i
--)
810 if (edit_get_byte (edit
, i
) == end_string_symbol
)
816 /* --------------------------------------------------------------------------------------------- */
818 * Calculating the start position of previous line.
820 * @param edit editor object
821 * @param current_pos current position
822 * @param end_string_symbol end of line symbol
823 * @return start position of previous line
827 edit_calculate_start_of_previous_line (WEdit
* edit
, off_t current_pos
, char end_string_symbol
)
829 current_pos
= edit_calculate_end_of_previous_line (edit
, current_pos
, end_string_symbol
);
830 current_pos
= edit_calculate_end_of_previous_line (edit
, current_pos
, end_string_symbol
);
832 return (current_pos
+ 1);
835 /* --------------------------------------------------------------------------------------------- */
837 * Calculating the start position of current line.
839 * @param edit editor object
840 * @param current_pos current position
841 * @param end_string_symbol end of line symbol
842 * @return start position of current line
846 edit_calculate_start_of_current_line (WEdit
* edit
, off_t current_pos
, char end_string_symbol
)
848 current_pos
= edit_calculate_end_of_previous_line (edit
, current_pos
, end_string_symbol
);
850 return (current_pos
+ 1);
853 /* --------------------------------------------------------------------------------------------- */
855 * Fixing (if needed) search start position if 'only in selection' option present.
857 * @param edit editor object
861 edit_search_fix_search_start_if_selection (WEdit
* edit
)
866 if (!edit_search_options
.only_in_selection
)
869 if (eval_marks (edit
, &start_mark
, &end_mark
) != 0)
872 if (edit_search_options
.backwards
)
874 if (edit
->search_start
> end_mark
|| edit
->search_start
<= start_mark
)
875 edit
->search_start
= end_mark
;
879 if (edit
->search_start
< start_mark
|| edit
->search_start
>= end_mark
)
880 edit
->search_start
= start_mark
;
884 /* --------------------------------------------------------------------------------------------- */
887 editcmd_find (WEdit
* edit
, gsize
* len
)
889 off_t search_start
= edit
->search_start
;
892 long end_mark
= edit
->last_byte
;
894 char end_string_symbol
;
896 end_string_symbol
= edit_search_get_current_end_line_char (edit
);
898 /* prepare for search */
899 if (edit_search_options
.only_in_selection
)
901 mark_res
= eval_marks (edit
, &start_mark
, &end_mark
);
904 edit
->search
->error
= MC_SEARCH_E_NOTFOUND
;
905 edit
->search
->error_str
= g_strdup (_("Search string not found"));
909 /* fix the start and the end of search block positions */
910 if ((edit
->search_line_type
& AT_START_LINE
) != 0
911 && (start_mark
!= 0 || edit_get_byte (edit
, start_mark
- 1) != end_string_symbol
))
914 edit_calculate_start_of_next_line (edit
, start_mark
, edit
->last_byte
,
917 if ((edit
->search_line_type
& AT_END_LINE
) != 0
918 && (end_mark
- 1 != edit
->last_byte
919 || edit_get_byte (edit
, end_mark
) != end_string_symbol
))
921 end_mark
= edit_calculate_end_of_previous_line (edit
, end_mark
, end_string_symbol
);
923 if (start_mark
>= end_mark
)
925 edit
->search
->error
= MC_SEARCH_E_NOTFOUND
;
926 edit
->search
->error_str
= g_strdup (_("Search string not found"));
932 if (edit_search_options
.backwards
)
933 end_mark
= max (1, edit
->curs1
) - 1;
937 if (edit_search_options
.backwards
)
939 /* backward search */
940 search_end
= end_mark
;
942 if ((edit
->search_line_type
& AT_START_LINE
) != 0)
944 edit_calculate_start_of_current_line (edit
, search_start
, end_string_symbol
);
946 while ((int) search_start
>= start_mark
)
948 if (search_end
> (off_t
) (search_start
+ edit
->search
->original_len
)
949 && mc_search_is_fixed_search_str (edit
->search
))
951 search_end
= search_start
+ edit
->search
->original_len
;
953 if (mc_search_run (edit
->search
, (void *) edit
, search_start
, search_end
, len
)
954 && edit
->search
->normal_offset
== search_start
)
960 if ((edit
->search_line_type
& AT_START_LINE
) != 0)
962 edit_calculate_start_of_previous_line (edit
, search_start
, end_string_symbol
);
966 edit
->search
->error_str
= g_strdup (_("Search string not found"));
971 if ((edit
->search_line_type
& AT_START_LINE
) != 0 && search_start
!= start_mark
)
973 edit_calculate_start_of_next_line (edit
, search_start
, end_mark
, end_string_symbol
);
974 return mc_search_run (edit
->search
, (void *) edit
, search_start
, end_mark
, len
);
979 /* --------------------------------------------------------------------------------------------- */
982 edit_replace_cmd__conv_to_display (char *str
)
987 tmp
= str_convert_to_display (str
);
991 return g_string_free (tmp
, FALSE
);
992 g_string_free (tmp
, TRUE
);
995 return g_strdup (str
);
998 /* --------------------------------------------------------------------------------------------- */
1001 edit_replace_cmd__conv_to_input (char *str
)
1006 tmp
= str_convert_to_input (str
);
1010 return g_string_free (tmp
, FALSE
);
1011 g_string_free (tmp
, TRUE
);
1014 return g_strdup (str
);
1017 /* --------------------------------------------------------------------------------------------- */
1020 edit_do_search (WEdit
* edit
)
1024 if (edit
->search
== NULL
)
1025 edit
->search_start
= edit
->curs1
;
1027 edit_push_undo_action (edit
, KEY_PRESS
+ edit
->start_display
);
1029 if (search_create_bookmark
)
1031 int found
= 0, books
= 0;
1032 long l
= 0, l_last
= -1;
1035 search_create_bookmark
= FALSE
;
1036 book_mark_flush (edit
, -1);
1040 if (!mc_search_run (edit
->search
, (void *) edit
, q
, edit
->last_byte
, &len
))
1043 edit
->search_start
= edit
->search
->normal_offset
;
1045 l
+= edit_count_lines (edit
, q
, edit
->search
->normal_offset
);
1048 book_mark_insert (edit
, l
, BOOK_MARK_FOUND_COLOR
);
1052 q
= edit
->search
->normal_offset
+ 1;
1056 edit_error_dialog (_("Search"), _("Search string not found"));
1058 edit_cursor_move (edit
, edit
->search_start
- edit
->curs1
);
1062 if (edit
->found_len
!= 0 && edit
->search_start
== edit
->found_start
+ 1
1063 && edit_search_options
.backwards
)
1064 edit
->search_start
--;
1066 if (edit
->found_len
!= 0 && edit
->search_start
== edit
->found_start
- 1
1067 && !edit_search_options
.backwards
)
1068 edit
->search_start
++;
1070 if (editcmd_find (edit
, &len
))
1072 edit
->found_start
= edit
->search_start
= edit
->search
->normal_offset
;
1073 edit
->found_len
= len
;
1075 edit_cursor_move (edit
, edit
->search_start
- edit
->curs1
);
1076 edit_scroll_screen_over_cursor (edit
);
1077 if (edit_search_options
.backwards
)
1078 edit
->search_start
--;
1080 edit
->search_start
++;
1084 edit
->search_start
= edit
->curs1
;
1085 if (edit
->search
->error_str
!= NULL
)
1086 edit_error_dialog (_("Search"), edit
->search
->error_str
);
1090 edit
->force
|= REDRAW_COMPLETELY
;
1091 edit_scroll_screen_over_cursor (edit
);
1094 /* --------------------------------------------------------------------------------------------- */
1097 edit_search (WEdit
* edit
)
1099 if (editcmd_dialog_search_show (edit
))
1101 edit
->search_line_type
= edit_get_search_line_type (edit
->search
);
1102 edit_search_fix_search_start_if_selection (edit
);
1103 edit_do_search (edit
);
1107 /* --------------------------------------------------------------------------------------------- */
1108 /** Return a null terminated length of text. Result must be g_free'd */
1110 static unsigned char *
1111 edit_get_block (WEdit
* edit
, long start
, long finish
, int *l
)
1113 unsigned char *s
, *r
;
1114 r
= s
= g_malloc0 (finish
- start
+ 1);
1115 if (edit
->column_highlight
)
1118 /* copy from buffer, excluding chars that are out of the column 'margins' */
1119 while (start
< finish
)
1123 x
= edit_move_forward3 (edit
, edit_bol (edit
, start
), 0, start
);
1124 c
= edit_get_byte (edit
, start
);
1125 if ((x
>= edit
->column1
&& x
< edit
->column2
)
1126 || (x
>= edit
->column2
&& x
< edit
->column1
) || c
== '\n')
1136 *l
= finish
- start
;
1137 while (start
< finish
)
1138 *s
++ = edit_get_byte (edit
, start
++);
1144 /* --------------------------------------------------------------------------------------------- */
1145 /** copies a block to clipboard file */
1148 edit_save_block_to_clip_file (WEdit
* edit
, long start
, long finish
)
1152 tmp
= mc_config_get_full_path (EDIT_CLIP_FILE
);
1153 ret
= edit_save_block (edit
, tmp
, start
, finish
);
1158 /* --------------------------------------------------------------------------------------------- */
1161 pipe_mail (WEdit
* edit
, char *to
, char *subject
, char *cc
)
1166 to
= name_quote (to
, 0);
1167 subject
= name_quote (subject
, 0);
1168 cc
= name_quote (cc
, 0);
1169 s
= g_strconcat ("mail -s ", subject
, *cc
? " -c " : "", cc
, " ", to
, (char *) NULL
);
1183 for (i
= 0; i
< edit
->last_byte
; i
++)
1184 fputc (edit_get_byte (edit
, i
), p
);
1189 /* --------------------------------------------------------------------------------------------- */
1192 is_break_char (char c
)
1194 return (isspace (c
) || strchr ("{}[]()<>=|/\\!?~-+`'\",.;:#$%^&*", c
));
1197 /* --------------------------------------------------------------------------------------------- */
1198 /** find first character of current word */
1201 edit_find_word_start (WEdit
* edit
, long *word_start
, gsize
* word_len
)
1206 /* return if at begin of file */
1207 if (edit
->curs1
<= 0)
1210 c
= (unsigned char) edit_get_byte (edit
, edit
->curs1
- 1);
1211 /* return if not at end or in word */
1212 if (is_break_char (c
))
1215 /* search start of word to be completed */
1218 /* return if at begin of file */
1219 if ((gsize
) edit
->curs1
< i
)
1223 c
= (unsigned char) edit_get_byte (edit
, edit
->curs1
- i
);
1225 if (is_break_char (c
))
1227 /* return if word starts with digit */
1231 *word_start
= edit
->curs1
- (i
- 1); /* start found */
1240 /* --------------------------------------------------------------------------------------------- */
1242 * Get current word under cursor
1244 * @param edit editor object
1245 * @param srch mc_search object
1246 * @param word_start start word position
1248 * @return newly allocated string or NULL if no any words under cursor
1252 edit_collect_completions_get_current_word (WEdit
* edit
, mc_search_t
* srch
, long word_start
)
1257 if (!mc_search_run (srch
, (void *) edit
, word_start
, edit
->last_byte
, &len
))
1260 temp
= g_string_sized_new (len
);
1262 for (i
= 0; i
< len
; i
++)
1266 chr
= edit_get_byte (edit
, word_start
+ i
);
1268 g_string_append_c (temp
, chr
);
1271 return g_string_free (temp
, temp
->len
== 0);
1274 /* --------------------------------------------------------------------------------------------- */
1275 /** collect the possible completions */
1278 edit_collect_completions (WEdit
* edit
, long word_start
, gsize word_len
,
1279 char *match_expr
, struct selection
*compl, gsize
* num
)
1287 long last_byte
, start
= -1;
1290 srch
= mc_search_new (match_expr
, -1);
1294 if (mc_config_get_bool
1295 (mc_main_config
, CONFIG_APP_SECTION
, "editor_wordcompletion_collect_entire_file", 0))
1297 last_byte
= edit
->last_byte
;
1301 last_byte
= word_start
;
1304 srch
->search_type
= MC_SEARCH_T_REGEX
;
1305 srch
->is_case_sensitive
= TRUE
;
1306 srch
->search_fn
= edit_search_cmd_callback
;
1308 current_word
= edit_collect_completions_get_current_word (edit
, srch
, word_start
);
1310 temp
= g_string_new ("");
1312 /* collect max MAX_WORD_COMPLETIONS completions */
1313 while (mc_search_run (srch
, (void *) edit
, start
+ 1, last_byte
, &len
))
1315 g_string_set_size (temp
, 0);
1316 start
= srch
->normal_offset
;
1318 /* add matched completion if not yet added */
1319 for (i
= 0; i
< len
; i
++)
1321 skip
= edit_get_byte (edit
, start
+ i
);
1325 /* skip current word */
1326 if (start
+ (long) i
== word_start
)
1329 g_string_append_c (temp
, skip
);
1335 if (current_word
!= NULL
&& strcmp (current_word
, temp
->str
) == 0)
1340 for (i
= 0; i
< *num
; i
++)
1343 ((char *) &compl[i
].text
[word_len
],
1344 (char *) &temp
->str
[word_len
], max (len
, compl[i
].len
) - word_len
) == 0)
1346 struct selection
this = compl[i
];
1347 for (++i
; i
< *num
; i
++)
1349 compl[i
- 1] = compl[i
];
1351 compl[*num
- 1] = this;
1353 break; /* skip it, already added */
1359 if (*num
== MAX_WORD_COMPLETIONS
)
1361 g_free (compl[0].text
);
1362 for (i
= 1; i
< *num
; i
++)
1364 compl[i
- 1] = compl[i
];
1371 recoded
= str_convert_to_display (temp
->str
);
1373 if (recoded
&& recoded
->len
)
1374 g_string_assign (temp
, recoded
->str
);
1376 g_string_free (recoded
, TRUE
);
1379 compl[*num
].text
= g_strdup (temp
->str
);
1380 compl[*num
].len
= temp
->len
;
1384 /* note the maximal length needed for the completion dialog */
1389 mc_search_free (srch
);
1390 g_string_free (temp
, TRUE
);
1391 g_free (current_word
);
1396 /* --------------------------------------------------------------------------------------------- */
1399 edit_insert_column_of_text (WEdit
* edit
, unsigned char *data
, int size
, int width
,
1400 long *start_pos
, long *end_pos
, int *col1
, int *col2
)
1405 cursor
= edit
->curs1
;
1406 col
= edit_get_col (edit
);
1408 for (i
= 0; i
< size
; i
++)
1410 if (data
[i
] != '\n')
1411 edit_insert (edit
, data
[i
]);
1413 { /* fill in and move to next line */
1417 if (edit_get_byte (edit
, edit
->curs1
) != '\n')
1419 l
= width
- (edit_get_col (edit
) - col
);
1422 edit_insert (edit
, ' ');
1426 for (p
= edit
->curs1
;; p
++)
1428 if (p
== edit
->last_byte
)
1430 edit_cursor_move (edit
, edit
->last_byte
- edit
->curs1
);
1431 edit_insert_ahead (edit
, '\n');
1435 if (edit_get_byte (edit
, p
) == '\n')
1441 edit_cursor_move (edit
, edit_move_forward3 (edit
, p
, col
, 0) - edit
->curs1
);
1442 l
= col
- edit_get_col (edit
);
1443 while (l
>= space_width
)
1445 edit_insert (edit
, ' ');
1452 *col2
= col
+ width
;
1453 *start_pos
= cursor
;
1454 *end_pos
= edit
->curs1
;
1455 edit_cursor_move (edit
, cursor
- edit
->curs1
);
1458 /* --------------------------------------------------------------------------------------------- */
1461 edit_macro_comparator (gconstpointer
* macro1
, gconstpointer
* macro2
)
1463 const macros_t
*m1
= (const macros_t
*) macro1
;
1464 const macros_t
*m2
= (const macros_t
*) macro2
;
1466 return m1
->hotkey
- m2
->hotkey
;
1469 /* --------------------------------------------------------------------------------------------- */
1472 edit_macro_sort_by_hotkey (void)
1474 if (macros_list
!= NULL
&& macros_list
->len
!= 0)
1475 g_array_sort (macros_list
, (GCompareFunc
) edit_macro_comparator
);
1478 /* --------------------------------------------------------------------------------------------- */
1481 edit_get_macro (WEdit
* edit
, int hotkey
, const macros_t
** macros
, guint
* indx
)
1483 const macros_t
*array_start
= &g_array_index (macros_list
, struct macros_t
, 0);
1485 macros_t search_macro
;
1489 search_macro
.hotkey
= hotkey
;
1490 result
= bsearch (&search_macro
, macros_list
->data
, macros_list
->len
,
1491 sizeof (macros_t
), (GCompareFunc
) edit_macro_comparator
);
1493 if (result
!= NULL
&& result
->macro
!= NULL
)
1495 *indx
= (result
- array_start
);
1503 /* --------------------------------------------------------------------------------------------- */
1504 /** returns FALSE on error */
1507 edit_delete_macro (WEdit
* edit
, int hotkey
)
1509 mc_config_t
*macros_config
= NULL
;
1510 const char *section_name
= "editor";
1511 gchar
*macros_fname
;
1514 const macros_t
*macros
= NULL
;
1516 /* clear array of actions for current hotkey */
1517 while (edit_get_macro (edit
, hotkey
, ¯os
, &indx
))
1519 if (macros
->macro
!= NULL
)
1520 g_array_free (macros
->macro
, TRUE
);
1522 g_array_remove_index (macros_list
, indx
);
1523 edit_macro_sort_by_hotkey ();
1526 macros_fname
= mc_config_get_full_path (MC_MACRO_FILE
);
1527 macros_config
= mc_config_init (macros_fname
, FALSE
);
1528 g_free (macros_fname
);
1530 if (macros_config
== NULL
)
1533 skeyname
= lookup_key_by_code (hotkey
);
1534 while (mc_config_del_key (macros_config
, section_name
, skeyname
))
1537 mc_config_save_file (macros_config
, NULL
);
1538 mc_config_deinit (macros_config
);
1543 /* --------------------------------------------------------------------------------------------- */
1544 /*** public functions ****************************************************************************/
1545 /* --------------------------------------------------------------------------------------------- */
1548 edit_help_cmd (WEdit
* edit
)
1550 ev_help_t event_data
= { NULL
, "[Internal File Editor]" };
1551 mc_event_raise (MCEVENT_GROUP_CORE
, "help", &event_data
);
1553 edit
->force
|= REDRAW_COMPLETELY
;
1556 /* --------------------------------------------------------------------------------------------- */
1559 edit_refresh_cmd (WEdit
* edit
)
1564 edit_get_syntax_color (edit
, -1, &color
);
1565 tty_touch_screen ();
1572 #endif /* !HAVE_SLANG */
1576 /* --------------------------------------------------------------------------------------------- */
1579 menu_save_mode_cmd (void)
1582 const int DLG_X
= 38;
1583 const int DLG_Y
= 13;
1587 const char *str
[] = {
1590 N_("&Do backups with following extension:")
1593 QuickWidget widgets
[] = {
1595 QUICK_BUTTON (18, DLG_X
, DLG_Y
- 3, DLG_Y
, N_("&Cancel"), B_CANCEL
, NULL
),
1597 QUICK_BUTTON (6, DLG_X
, DLG_Y
- 3, DLG_Y
, N_("&OK"), B_ENTER
, NULL
),
1599 QUICK_CHECKBOX (4, DLG_X
, 8, DLG_Y
, N_("Check &POSIX new line"), &option_check_nl_at_eof
),
1601 QUICK_INPUT (8, DLG_X
, 6, DLG_Y
, option_backup_ext
, 9, 0, "edit-backup-ext", &str_result
),
1603 QUICK_RADIO (4, DLG_X
, 3, DLG_Y
, 3, str
, &option_save_mode
),
1607 QuickDialog dialog
= {
1608 DLG_X
, DLG_Y
, -1, -1, N_("Edit Save Mode"),
1609 "[Edit Save Mode]", widgets
, NULL
, FALSE
1614 size_t w0
, w1
, b_len
, w3
;
1616 #ifdef HAVE_ASSERT_H
1617 assert (option_backup_ext
!= NULL
);
1620 /* OK/Cancel buttons */
1621 w0
= str_term_width1 (_(widgets
[0].u
.button
.text
)) + 3;
1622 w1
= str_term_width1 (_(widgets
[1].u
.button
.text
)) + 5; /* default button */
1623 b_len
= w0
+ w1
+ 3;
1625 maxlen
= max (b_len
, (size_t) str_term_width1 (_(dialog
.title
)) + 2);
1628 for (i
= 0; i
< 3; i
++)
1633 w3
= max (w3
, (size_t) str_term_width1 (str
[i
]));
1636 maxlen
= max (maxlen
, w3
+ 4);
1638 dialog
.xlen
= min ((size_t) COLS
, maxlen
+ 8);
1640 widgets
[3].u
.input
.len
= w3
;
1641 widgets
[1].relative_x
= (dialog
.xlen
- b_len
) / 2;
1642 widgets
[0].relative_x
= widgets
[1].relative_x
+ w0
+ 2;
1644 for (i
= 0; i
< sizeof (widgets
) / sizeof (widgets
[0]); i
++)
1645 widgets
[i
].x_divisions
= dialog
.xlen
;
1647 if (quick_dialog (&dialog
) != B_CANCEL
)
1649 g_free (option_backup_ext
);
1650 option_backup_ext
= str_result
;
1654 /* --------------------------------------------------------------------------------------------- */
1657 edit_set_filename (WEdit
* edit
, const vfs_path_t
* name_vpath
)
1659 vfs_path_free (edit
->filename_vpath
);
1660 edit
->filename_vpath
= vfs_path_clone (name_vpath
);
1662 if (edit
->dir_vpath
== NULL
)
1663 edit
->dir_vpath
= vfs_path_clone (vfs_get_raw_current_dir ());
1666 /* --------------------------------------------------------------------------------------------- */
1667 /* Here we want to warn the users of overwriting an existing file,
1668 but only if they have made a change to the filename */
1669 /* returns 1 on success */
1671 edit_save_as_cmd (WEdit
* edit
)
1673 /* This heads the 'Save As' dialog box */
1674 vfs_path_t
*exp_vpath
;
1676 int different_filename
= 0;
1678 if (!edit_check_newline (edit
))
1681 exp_vpath
= edit_get_save_file_as (edit
);
1682 edit_push_undo_action (edit
, KEY_PRESS
+ edit
->start_display
);
1684 if (exp_vpath
!= NULL
)
1686 if (vfs_path_len (exp_vpath
) == 0)
1692 if (vfs_path_cmp (edit
->filename_vpath
, exp_vpath
) != 0)
1697 if (mc_stat (exp_vpath
, &sb
) == 0 && !S_ISREG (sb
.st_mode
))
1699 edit_error_dialog (_("Save as"),
1701 ("Cannot save: destination is not a regular file")));
1705 different_filename
= 1;
1706 file
= mc_open (exp_vpath
, O_RDONLY
| O_BINARY
);
1710 /* the file exists */
1712 /* Overwrite the current file or cancel the operation */
1713 if (edit_query_dialog2
1715 _("A file already exists with this name"), _("&Overwrite"), _("&Cancel")))
1720 edit
->stat1
.st_mode
|= S_IWUSR
;
1722 save_lock
= lock_file (exp_vpath
);
1726 /* filenames equal, check if already locked */
1727 if (!edit
->locked
&& !edit
->delete_file
)
1728 save_lock
= lock_file (exp_vpath
);
1731 if (different_filename
)
1734 * Allow user to write into saved (under another name) file
1735 * even if original file had r/o user permissions.
1737 edit
->stat1
.st_mode
|= S_IWRITE
;
1740 rv
= edit_save_file (edit
, exp_vpath
);
1744 /* Succesful, so unlock both files */
1745 if (different_filename
)
1748 unlock_file (exp_vpath
);
1750 edit
->locked
= unlock_file (edit
->filename_vpath
);
1754 if (edit
->locked
|| save_lock
)
1755 edit
->locked
= unlock_file (edit
->filename_vpath
);
1758 edit_set_filename (edit
, exp_vpath
);
1759 if (edit
->lb
!= LB_ASIS
)
1760 edit_reload (edit
, exp_vpath
);
1762 edit
->delete_file
= 0;
1763 if (different_filename
)
1764 edit_load_syntax (edit
, NULL
, edit
->syntax_type
);
1765 vfs_path_free (exp_vpath
);
1766 edit
->force
|= REDRAW_COMPLETELY
;
1769 edit_error_dialog (_("Save as"), get_sys_error (_("Cannot save file")));
1772 /* Failed, so maintain modify (not save) lock */
1774 unlock_file (exp_vpath
);
1781 vfs_path_free (exp_vpath
);
1782 edit
->force
|= REDRAW_COMPLETELY
;
1786 /* {{{ Macro stuff starts here */
1787 /* --------------------------------------------------------------------------------------------- */
1790 edit_delete_macro_cmd (WEdit
* edit
)
1794 hotkey
= editcmd_dialog_raw_key_query (_("Delete macro"), _("Press macro hotkey:"), 1);
1796 if (hotkey
!= 0 && !edit_delete_macro (edit
, hotkey
))
1797 message (D_ERROR
, _("Delete macro"), _("Macro not deleted"));
1800 /* --------------------------------------------------------------------------------------------- */
1802 /** returns FALSE on error */
1804 edit_execute_macro (WEdit
* edit
, int hotkey
)
1806 gboolean res
= FALSE
;
1810 const macros_t
*macros
;
1813 if (edit_get_macro (edit
, hotkey
, ¯os
, &indx
) &&
1814 macros
->macro
!= NULL
&& macros
->macro
->len
!= 0)
1818 edit
->force
|= REDRAW_PAGE
;
1820 for (i
= 0; i
< macros
->macro
->len
; i
++)
1822 const macro_action_t
*m_act
;
1824 m_act
= &g_array_index (macros
->macro
, struct macro_action_t
, i
);
1825 edit_execute_cmd (edit
, m_act
->action
, m_act
->ch
);
1834 /* --------------------------------------------------------------------------------------------- */
1836 /** returns FALSE on error */
1838 edit_store_macro_cmd (WEdit
* edit
)
1842 GString
*marcros_string
;
1843 mc_config_t
*macros_config
= NULL
;
1844 const char *section_name
= "editor";
1845 gchar
*macros_fname
;
1846 GArray
*macros
; /* current macro */
1848 gboolean have_macro
= FALSE
;
1849 char *skeyname
= NULL
;
1851 hotkey
= editcmd_dialog_raw_key_query (_("Save macro"), _("Press the macro's new hotkey:"), 1);
1852 if (hotkey
== ESC_CHAR
)
1855 tmp_act
= keybind_lookup_keymap_command (editor_map
, hotkey
);
1857 /* return FALSE if try assign macro into restricted hotkeys */
1858 if (tmp_act
== CK_MacroStartRecord
1859 || tmp_act
== CK_MacroStopRecord
|| tmp_act
== CK_MacroStartStopRecord
)
1862 edit_delete_macro (edit
, hotkey
);
1864 macros_fname
= mc_config_get_full_path (MC_MACRO_FILE
);
1865 macros_config
= mc_config_init (macros_fname
, FALSE
);
1866 g_free (macros_fname
);
1868 if (macros_config
== NULL
)
1871 edit_push_undo_action (edit
, KEY_PRESS
+ edit
->start_display
);
1873 marcros_string
= g_string_sized_new (250);
1874 macros
= g_array_new (TRUE
, FALSE
, sizeof (macro_action_t
));
1876 skeyname
= lookup_key_by_code (hotkey
);
1878 for (i
= 0; i
< macro_index
; i
++)
1880 macro_action_t m_act
;
1881 const char *action_name
;
1883 action_name
= keybind_lookup_actionname (record_macro_buf
[i
].action
);
1885 if (action_name
== NULL
)
1888 m_act
.action
= record_macro_buf
[i
].action
;
1889 m_act
.ch
= record_macro_buf
[i
].ch
;
1890 g_array_append_val (macros
, m_act
);
1892 g_string_append_printf (marcros_string
, "%s:%i;", action_name
,
1893 (int) record_macro_buf
[i
].ch
);
1898 macro
.hotkey
= hotkey
;
1899 macro
.macro
= macros
;
1900 g_array_append_val (macros_list
, macro
);
1901 mc_config_set_string (macros_config
, section_name
, skeyname
, marcros_string
->str
);
1904 mc_config_del_key (macros_config
, section_name
, skeyname
);
1907 edit_macro_sort_by_hotkey ();
1909 g_string_free (marcros_string
, TRUE
);
1910 mc_config_save_file (macros_config
, NULL
);
1911 mc_config_deinit (macros_config
);
1915 /* --------------------------------------------------------------------------------------------- */
1918 edit_repeat_macro_cmd (WEdit
* edit
)
1925 f
= input_dialog (_("Repeat last commands"), _("Repeat times:"), MC_HISTORY_EDIT_REPEAT
, NULL
);
1926 if (f
== NULL
|| *f
== '\0')
1932 count_repeat
= strtol (f
, &error
, 0);
1942 edit_push_undo_action (edit
, KEY_PRESS
+ edit
->start_display
);
1943 edit
->force
|= REDRAW_PAGE
;
1945 for (j
= 0; j
< count_repeat
; j
++)
1946 for (i
= 0; i
< macro_index
; i
++)
1947 edit_execute_cmd (edit
, record_macro_buf
[i
].action
, record_macro_buf
[i
].ch
);
1948 edit_update_screen (edit
);
1952 /* --------------------------------------------------------------------------------------------- */
1953 /** return FALSE on error */
1956 edit_load_macro_cmd (WEdit
* edit
)
1958 mc_config_t
*macros_config
= NULL
;
1959 gchar
**profile_keys
, **keys
;
1960 gchar
**values
, **curr_values
;
1961 gsize len
, values_len
;
1962 const char *section_name
= "editor";
1963 gchar
*macros_fname
;
1968 macros_fname
= mc_config_get_full_path (MC_MACRO_FILE
);
1969 macros_config
= mc_config_init (macros_fname
, TRUE
);
1970 g_free (macros_fname
);
1972 if (macros_config
== NULL
)
1975 profile_keys
= keys
= mc_config_get_keys (macros_config
, section_name
, &len
);
1976 while (*profile_keys
!= NULL
)
1978 gboolean have_macro
;
1982 macros
= g_array_new (TRUE
, FALSE
, sizeof (macro_action_t
));
1984 curr_values
= values
= mc_config_get_string_list (macros_config
, section_name
,
1985 *profile_keys
, &values_len
);
1986 hotkey
= lookup_key (*profile_keys
, NULL
);
1989 while (*curr_values
!= NULL
&& *curr_values
[0] != '\0')
1991 char **macro_pair
= NULL
;
1993 macro_pair
= g_strsplit (*curr_values
, ":", 2);
1995 if (macro_pair
!= NULL
)
1997 macro_action_t m_act
;
1998 if (macro_pair
[0] == NULL
|| macro_pair
[0][0] == '\0')
2002 m_act
.action
= keybind_lookup_action (macro_pair
[0]);
2003 g_free (macro_pair
[0]);
2004 macro_pair
[0] = NULL
;
2006 if (macro_pair
[1] == NULL
|| macro_pair
[1][0] == '\0')
2010 m_act
.ch
= strtol (macro_pair
[1], NULL
, 0);
2011 g_free (macro_pair
[1]);
2012 macro_pair
[1] = NULL
;
2014 if (m_act
.action
!= 0)
2016 /* a shell command */
2017 if ((m_act
.action
/ CK_PipeBlock (0)) == 1)
2019 m_act
.action
= CK_PipeBlock (0) + (m_act
.ch
> 0 ? m_act
.ch
: 0);
2022 g_array_append_val (macros
, m_act
);
2025 g_strfreev (macro_pair
);
2032 macro
.hotkey
= hotkey
;
2033 macro
.macro
= macros
;
2034 g_array_append_val (macros_list
, macro
);
2037 g_strfreev (values
);
2040 mc_config_deinit (macros_config
);
2041 edit_macro_sort_by_hotkey ();
2045 /* }}} Macro stuff end here */
2047 /* --------------------------------------------------------------------------------------------- */
2048 /** returns 1 on success */
2051 edit_save_confirm_cmd (WEdit
* edit
)
2055 if (edit
->filename_vpath
== NULL
)
2056 return edit_save_as_cmd (edit
);
2058 if (!edit_check_newline (edit
))
2061 if (edit_confirm_save
)
2066 filename
= vfs_path_to_str (edit
->filename_vpath
);
2067 f
= g_strdup_printf (_("Confirm save file: \"%s\""), filename
);
2069 ok
= (edit_query_dialog2 (_("Save file"), f
, _("&Save"), _("&Cancel")) == 0);
2074 return edit_save_cmd (edit
);
2077 /* --------------------------------------------------------------------------------------------- */
2079 /* returns TRUE on success */
2081 edit_new_cmd (WEdit
* edit
)
2084 && edit_query_dialog2 (_("Warning"),
2085 _("Current text was modified without a file save.\n"
2086 "Continue discards these changes"),
2087 _("C&ontinue"), _("&Cancel")) == 1)
2089 edit
->force
|= REDRAW_COMPLETELY
;
2093 edit
->force
|= REDRAW_COMPLETELY
;
2095 return edit_renew (edit
); /* if this gives an error, something has really screwed up */
2098 /* --------------------------------------------------------------------------------------------- */
2101 edit_load_cmd (WEdit
* edit
, edit_current_file_t what
)
2103 gboolean ret
= TRUE
;
2106 && edit_query_dialog2 (_("Warning"),
2107 _("Current text was modified without a file save.\n"
2108 "Continue discards these changes"), _("C&ontinue"),
2111 edit
->force
|= REDRAW_COMPLETELY
;
2117 case EDIT_FILE_COMMON
:
2119 char *filename
, *exp
;
2121 filename
= vfs_path_to_str (edit
->filename_vpath
);
2122 exp
= input_expand_dialog (_("Load"), _("Enter file name:"),
2123 MC_HISTORY_EDIT_LOAD
, filename
);
2126 if (exp
!= NULL
&& *exp
!= '\0')
2128 vfs_path_t
*exp_vpath
;
2130 exp_vpath
= vfs_path_from_str (exp
);
2131 ret
= edit_load_file_from_filename (edit
, exp_vpath
);
2132 vfs_path_free (exp_vpath
);
2139 case EDIT_FILE_SYNTAX
:
2140 edit_load_syntax_file (edit
);
2143 case EDIT_FILE_MENU
:
2144 edit_load_menu_file (edit
);
2151 edit
->force
|= REDRAW_COMPLETELY
;
2155 /* --------------------------------------------------------------------------------------------- */
2157 if mark2 is -1 then marking is from mark1 to the cursor.
2158 Otherwise its between the markers. This handles this.
2159 Returns 1 if no text is marked.
2163 eval_marks (WEdit
* edit
, long *start_mark
, long *end_mark
)
2165 if (edit
->mark1
!= edit
->mark2
)
2167 long start_bol
, start_eol
;
2168 long end_bol
, end_eol
;
2173 if (edit
->end_mark_curs
< 0)
2174 end_mark_curs
= edit
->curs1
;
2176 end_mark_curs
= edit
->end_mark_curs
;
2178 if (edit
->mark2
>= 0)
2180 *start_mark
= min (edit
->mark1
, edit
->mark2
);
2181 *end_mark
= max (edit
->mark1
, edit
->mark2
);
2185 *start_mark
= min (edit
->mark1
, end_mark_curs
);
2186 *end_mark
= max (edit
->mark1
, end_mark_curs
);
2187 edit
->column2
= edit
->curs_col
+ edit
->over_col
;
2190 if (edit
->column_highlight
2191 && (((edit
->mark1
> end_mark_curs
) && (edit
->column1
< edit
->column2
))
2192 || ((edit
->mark1
< end_mark_curs
) && (edit
->column1
> edit
->column2
))))
2194 start_bol
= edit_bol (edit
, *start_mark
);
2195 start_eol
= edit_eol (edit
, start_bol
- 1) + 1;
2196 end_bol
= edit_bol (edit
, *end_mark
);
2197 end_eol
= edit_eol (edit
, *end_mark
);
2198 col1
= min (edit
->column1
, edit
->column2
);
2199 col2
= max (edit
->column1
, edit
->column2
);
2202 edit_move_forward3 (edit
, start_bol
, col2
, 0) - edit_move_forward3 (edit
, start_bol
,
2205 edit_move_forward3 (edit
, end_bol
, col2
, 0) - edit_move_forward3 (edit
, end_bol
,
2208 *start_mark
-= diff1
;
2210 *start_mark
= max (*start_mark
, start_eol
);
2211 *end_mark
= min (*end_mark
, end_eol
);
2217 *start_mark
= *end_mark
= 0;
2218 edit
->column2
= edit
->column1
= 0;
2223 /* --------------------------------------------------------------------------------------------- */
2226 edit_insert_over (WEdit
* edit
)
2230 for (i
= 0; i
< edit
->over_col
; i
++)
2232 edit_insert (edit
, ' ');
2237 /* --------------------------------------------------------------------------------------------- */
2240 edit_insert_column_of_text_from_file (WEdit
* edit
, int file
,
2241 long *start_pos
, long *end_pos
, int *col1
, int *col2
)
2245 int blocklen
= -1, width
= 0;
2246 unsigned char *data
;
2248 cursor
= edit
->curs1
;
2249 col
= edit_get_col (edit
);
2250 data
= g_malloc0 (TEMP_BUF_LEN
);
2252 while ((blocklen
= mc_read (file
, (char *) data
, TEMP_BUF_LEN
)) > 0)
2255 for (width
= 0; width
< blocklen
; width
++)
2257 if (data
[width
] == '\n')
2260 for (i
= 0; i
< blocklen
; i
++)
2262 if (data
[i
] == '\n')
2263 { /* fill in and move to next line */
2266 if (edit_get_byte (edit
, edit
->curs1
) != '\n')
2268 l
= width
- (edit_get_col (edit
) - col
);
2271 edit_insert (edit
, ' ');
2275 for (p
= edit
->curs1
;; p
++)
2277 if (p
== edit
->last_byte
)
2279 edit_cursor_move (edit
, edit
->last_byte
- edit
->curs1
);
2280 edit_insert_ahead (edit
, '\n');
2284 if (edit_get_byte (edit
, p
) == '\n')
2290 edit_cursor_move (edit
, edit_move_forward3 (edit
, p
, col
, 0) - edit
->curs1
);
2291 l
= col
- edit_get_col (edit
);
2292 while (l
>= space_width
)
2294 edit_insert (edit
, ' ');
2299 edit_insert (edit
, data
[i
]);
2303 *col2
= col
+ width
;
2304 *start_pos
= cursor
;
2305 *end_pos
= edit
->curs1
;
2306 edit_cursor_move (edit
, cursor
- edit
->curs1
);
2312 /* --------------------------------------------------------------------------------------------- */
2315 edit_block_copy_cmd (WEdit
* edit
)
2317 long start_mark
, end_mark
, current
= edit
->curs1
;
2322 unsigned char *copy_buf
;
2324 edit_update_curs_col (edit
);
2325 if (eval_marks (edit
, &start_mark
, &end_mark
))
2328 copy_buf
= edit_get_block (edit
, start_mark
, end_mark
, &size
);
2330 /* all that gets pushed are deletes hence little space is used on the stack */
2332 edit_push_markers (edit
);
2334 if (edit
->column_highlight
)
2336 col_delta
= abs (edit
->column2
- edit
->column1
);
2337 edit_insert_column_of_text (edit
, copy_buf
, size
, col_delta
, &mark1
, &mark2
, &c1
, &c2
);
2342 edit_insert_ahead (edit
, copy_buf
[size
]);
2346 edit_scroll_screen_over_cursor (edit
);
2348 if (edit
->column_highlight
)
2349 edit_set_markers (edit
, edit
->curs1
, mark2
, c1
, c2
);
2350 else if (start_mark
< current
&& end_mark
> current
)
2351 edit_set_markers (edit
, start_mark
, end_mark
+ end_mark
- start_mark
, 0, 0);
2353 edit
->force
|= REDRAW_PAGE
;
2357 /* --------------------------------------------------------------------------------------------- */
2360 edit_block_move_cmd (WEdit
* edit
)
2363 unsigned char *copy_buf
= NULL
;
2364 long start_mark
, end_mark
;
2367 if (eval_marks (edit
, &start_mark
, &end_mark
))
2370 line
= edit
->curs_line
;
2371 if (edit
->mark2
< 0)
2372 edit_mark_cmd (edit
, 0);
2373 edit_push_markers (edit
);
2375 if (edit
->column_highlight
)
2383 c1
= min (edit
->column1
, edit
->column2
);
2384 c2
= max (edit
->column1
, edit
->column2
);
2385 b_width
= (c2
- c1
);
2387 edit_update_curs_col (edit
);
2390 x2
= x
+ edit
->over_col
;
2392 /* do nothing when cursor inside first line of selected area */
2393 if ((edit_eol (edit
, edit
->curs1
) == edit_eol (edit
, start_mark
)) && (x2
> c1
&& x2
<= c2
))
2396 if (edit
->curs1
> start_mark
&& edit
->curs1
< edit_eol (edit
, end_mark
))
2400 else if (x
> c1
&& x
<= c2
)
2403 /* save current selection into buffer */
2404 copy_buf
= edit_get_block (edit
, start_mark
, end_mark
, &size
);
2406 /* remove current selection */
2407 edit_block_delete_cmd (edit
);
2409 edit
->over_col
= max (0, edit
->over_col
- b_width
);
2410 /* calculate the cursor pos after delete block */
2411 current
= edit_move_forward3 (edit
, edit_bol (edit
, edit
->curs1
), x
, 0);
2412 edit_cursor_move (edit
, current
- edit
->curs1
);
2413 edit_scroll_screen_over_cursor (edit
);
2415 /* add TWS if need before block insertion */
2416 if (option_cursor_beyond_eol
&& edit
->over_col
> 0)
2417 edit_insert_over (edit
);
2419 edit_insert_column_of_text (edit
, copy_buf
, size
, b_width
, &mark1
, &mark2
, &c1
, &c2
);
2420 edit_set_markers (edit
, mark1
, mark2
, c1
, c2
);
2426 current
= edit
->curs1
;
2427 copy_buf
= g_malloc0 (end_mark
- start_mark
);
2428 edit_cursor_move (edit
, start_mark
- edit
->curs1
);
2429 edit_scroll_screen_over_cursor (edit
);
2431 while (count
< end_mark
)
2433 copy_buf
[end_mark
- count
- 1] = edit_delete (edit
, 1);
2436 edit_scroll_screen_over_cursor (edit
);
2437 edit_cursor_move (edit
,
2438 current
- edit
->curs1
-
2439 (((current
- edit
->curs1
) > 0) ? end_mark
- start_mark
: 0));
2440 edit_scroll_screen_over_cursor (edit
);
2441 while (count
-- > start_mark
)
2442 edit_insert_ahead (edit
, copy_buf
[end_mark
- count
- 1]);
2443 edit_set_markers (edit
, edit
->curs1
, edit
->curs1
+ end_mark
- start_mark
, 0, 0);
2446 edit_scroll_screen_over_cursor (edit
);
2448 edit
->force
|= REDRAW_PAGE
;
2451 /* --------------------------------------------------------------------------------------------- */
2452 /** returns 1 if canceelled by user */
2455 edit_block_delete_cmd (WEdit
* edit
)
2457 long start_mark
, end_mark
;
2458 if (eval_marks (edit
, &start_mark
, &end_mark
))
2460 edit_delete_line (edit
);
2463 return edit_block_delete (edit
);
2466 /* --------------------------------------------------------------------------------------------- */
2467 /** call with edit = 0 before shutdown to close memory leaks */
2470 edit_replace_cmd (WEdit
* edit
, int again
)
2472 /* 1 = search string, 2 = replace with */
2473 static char *saved1
= NULL
; /* saved default[123] */
2474 static char *saved2
= NULL
;
2475 char *input1
= NULL
; /* user input from the dialog */
2476 char *input2
= NULL
;
2477 GString
*input2_str
= NULL
;
2480 long times_replaced
= 0;
2481 gboolean once_found
= FALSE
;
2485 g_free (saved1
), saved1
= NULL
;
2486 g_free (saved2
), saved2
= NULL
;
2490 edit
->force
|= REDRAW_COMPLETELY
;
2492 if (again
&& !saved1
&& !saved2
)
2497 input1
= g_strdup (saved1
? saved1
: "");
2498 input2
= g_strdup (saved2
? saved2
: "");
2502 char *tmp_inp1
, *tmp_inp2
;
2504 disp1
= edit_replace_cmd__conv_to_display (saved1
? saved1
: (char *) "");
2505 disp2
= edit_replace_cmd__conv_to_display (saved2
? saved2
: (char *) "");
2507 edit_push_undo_action (edit
, KEY_PRESS
+ edit
->start_display
);
2509 editcmd_dialog_replace_show (edit
, disp1
, disp2
, &input1
, &input2
);
2514 if (input1
== NULL
|| *input1
== '\0')
2516 edit
->force
= REDRAW_COMPLETELY
;
2522 input1
= edit_replace_cmd__conv_to_input (input1
);
2523 input2
= edit_replace_cmd__conv_to_input (input2
);
2527 g_free (saved1
), saved1
= g_strdup (input1
);
2528 g_free (saved2
), saved2
= g_strdup (input2
);
2530 mc_search_free (edit
->search
);
2531 edit
->search
= NULL
;
2534 input2_str
= g_string_new (input2
);
2538 edit
->search
= mc_search_new (input1
, -1);
2539 if (edit
->search
== NULL
)
2541 edit
->search_start
= edit
->curs1
;
2544 edit
->search
->search_type
= edit_search_options
.type
;
2545 edit
->search
->is_all_charsets
= edit_search_options
.all_codepages
;
2546 edit
->search
->is_case_sensitive
= edit_search_options
.case_sens
;
2547 edit
->search
->whole_words
= edit_search_options
.whole_words
;
2548 edit
->search
->search_fn
= edit_search_cmd_callback
;
2549 edit
->search_line_type
= edit_get_search_line_type (edit
->search
);
2550 edit_search_fix_search_start_if_selection (edit
);
2553 if (edit
->found_len
&& edit
->search_start
== edit
->found_start
+ 1
2554 && edit_search_options
.backwards
)
2555 edit
->search_start
--;
2557 if (edit
->found_len
&& edit
->search_start
== edit
->found_start
- 1
2558 && !edit_search_options
.backwards
)
2559 edit
->search_start
++;
2565 if (!editcmd_find (edit
, &len
))
2567 if (!(edit
->search
->error
== MC_SEARCH_E_OK
||
2568 (once_found
&& edit
->search
->error
== MC_SEARCH_E_NOTFOUND
)))
2570 edit_error_dialog (_("Search"), edit
->search
->error_str
);
2576 edit
->search_start
= edit
->search
->normal_offset
;
2577 /*returns negative on not found or error in pattern */
2579 if ((edit
->search_start
>= 0) && (edit
->search_start
< edit
->last_byte
))
2584 edit
->found_start
= edit
->search_start
;
2585 i
= edit
->found_len
= len
;
2587 edit_cursor_move (edit
, edit
->search_start
- edit
->curs1
);
2588 edit_scroll_screen_over_cursor (edit
);
2590 if (edit
->replace_mode
== 0)
2595 l
= edit
->curs_row
- edit
->widget
.lines
/ 3;
2597 edit_scroll_downward (edit
, l
);
2599 edit_scroll_upward (edit
, -l
);
2601 edit_scroll_screen_over_cursor (edit
);
2602 edit
->force
|= REDRAW_PAGE
;
2603 edit_render_keypress (edit
);
2605 /*so that undo stops at each query */
2606 edit_push_key_press (edit
);
2607 /* and prompt 2/3 down */
2608 disp1
= edit_replace_cmd__conv_to_display (saved1
);
2609 disp2
= edit_replace_cmd__conv_to_display (saved2
);
2610 prompt
= editcmd_dialog_replace_prompt_show (edit
, disp1
, disp2
, -1, -1);
2614 if (prompt
== B_REPLACE_ALL
)
2615 edit
->replace_mode
= 1;
2616 else if (prompt
== B_SKIP_REPLACE
)
2618 if (edit_search_options
.backwards
)
2619 edit
->search_start
--;
2621 edit
->search_start
++;
2622 continue; /* loop */
2624 else if (prompt
== B_CANCEL
)
2626 edit
->replace_mode
= -1;
2631 repl_str
= mc_search_prepare_replace_str (edit
->search
, input2_str
);
2633 if (edit
->search
->error
!= MC_SEARCH_E_OK
)
2635 edit_error_dialog (_("Replace"), edit
->search
->error_str
);
2636 g_string_free (repl_str
, TRUE
);
2640 /* delete then insert new */
2641 for (i
= 0; i
< len
; i
++)
2642 edit_delete (edit
, 1);
2644 for (i
= 0; i
< repl_str
->len
; i
++)
2645 edit_insert (edit
, repl_str
->str
[i
]);
2647 edit
->found_len
= repl_str
->len
;
2648 g_string_free (repl_str
, TRUE
);
2651 /* so that we don't find the same string again */
2652 if (edit_search_options
.backwards
)
2654 edit
->search_start
--;
2658 edit
->search_start
+= edit
->found_len
+ (len
== 0 ? 1 : 0);
2660 if (edit
->search_start
>= edit
->last_byte
)
2664 edit_scroll_screen_over_cursor (edit
);
2668 /* try and find from right here for next search */
2669 edit
->search_start
= edit
->curs1
;
2670 edit_update_curs_col (edit
);
2672 edit
->force
|= REDRAW_PAGE
;
2673 edit_render_keypress (edit
);
2675 if (times_replaced
== 0)
2676 query_dialog (_("Replace"), _("Search string not found"), D_NORMAL
, 1, _("&OK"));
2680 while (edit
->replace_mode
>= 0);
2682 edit_scroll_screen_over_cursor (edit
);
2683 edit
->force
|= REDRAW_COMPLETELY
;
2684 edit_render_keypress (edit
);
2686 if ((edit
->replace_mode
== 1) && (times_replaced
!= 0))
2687 message (D_NORMAL
, _("Replace"), _("%ld replacements made"), times_replaced
);
2692 if (input2_str
!= NULL
)
2693 g_string_free (input2_str
, TRUE
);
2696 /* --------------------------------------------------------------------------------------------- */
2699 edit_search_cmd_callback (const void *user_data
, gsize char_offset
, int *current_char
)
2701 *current_char
= edit_get_byte ((WEdit
*) user_data
, (long) char_offset
);
2702 return MC_SEARCH_CB_OK
;
2705 /* --------------------------------------------------------------------------------------------- */
2708 edit_search_cmd (WEdit
* edit
, gboolean again
)
2716 else if (edit
->last_search_string
!= NULL
)
2717 edit_do_search (edit
);
2720 /* find last search string in history */
2723 history
= history_get (MC_HISTORY_SHARED_SEARCH
);
2724 if (history
!= NULL
&& history
->data
!= NULL
)
2726 edit
->last_search_string
= (char *) history
->data
;
2727 history
->data
= NULL
;
2728 history
= g_list_first (history
);
2729 g_list_foreach (history
, (GFunc
) g_free
, NULL
);
2730 g_list_free (history
);
2732 edit
->search
= mc_search_new (edit
->last_search_string
, -1);
2733 if (edit
->search
== NULL
)
2735 /* if not... then ask for an expression */
2736 g_free (edit
->last_search_string
);
2737 edit
->last_search_string
= NULL
;
2742 edit
->search
->search_type
= edit_search_options
.type
;
2743 edit
->search
->is_all_charsets
= edit_search_options
.all_codepages
;
2744 edit
->search
->is_case_sensitive
= edit_search_options
.case_sens
;
2745 edit
->search
->whole_words
= edit_search_options
.whole_words
;
2746 edit
->search
->search_fn
= edit_search_cmd_callback
;
2747 edit
->search_line_type
= edit_get_search_line_type (edit
->search
);
2748 edit_do_search (edit
);
2753 /* if not... then ask for an expression */
2754 g_free (edit
->last_search_string
);
2755 edit
->last_search_string
= NULL
;
2762 /* --------------------------------------------------------------------------------------------- */
2764 * Check if it's OK to close the editor. If there are unsaved changes,
2765 * ask user. Return 1 if it's OK to exit, 0 to continue editing.
2769 edit_ok_to_exit (WEdit
* edit
)
2773 if (!edit
->modified
)
2776 if (!mc_global
.midnight_shutdown
)
2778 if (!edit_check_newline (edit
))
2782 act
= edit_query_dialog3 (_("Quit"), _("File was modified. Save with exit?"),
2783 _("&Yes"), _("&No"), _("&Cancel quit"));
2788 edit_query_dialog2 (_("Quit"),
2789 _("Midnight Commander is being shut down.\nSave modified file?"),
2790 _("&Yes"), _("&No"));
2800 edit_push_markers (edit
);
2801 edit_set_markers (edit
, 0, 0, 0, 0);
2802 if (!edit_save_cmd (edit
) || mc_global
.midnight_shutdown
)
2803 return mc_global
.midnight_shutdown
;
2807 case 2: /* Cancel quit */
2815 /* --------------------------------------------------------------------------------------------- */
2816 /** save block, returns 1 on success */
2819 edit_save_block (WEdit
* edit
, const char *filename
, long start
, long finish
)
2824 vpath
= vfs_path_from_str (filename
);
2825 file
= mc_open (vpath
, O_CREAT
| O_WRONLY
| O_TRUNC
,
2826 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IROTH
| O_BINARY
);
2827 vfs_path_free (vpath
);
2831 if (edit
->column_highlight
)
2835 r
= mc_write (file
, VERTICAL_MAGIC
, sizeof (VERTICAL_MAGIC
));
2838 unsigned char *block
, *p
;
2840 p
= block
= edit_get_block (edit
, start
, finish
, &len
);
2843 r
= mc_write (file
, p
, len
);
2857 len
= finish
- start
;
2858 buf
= g_malloc0 (TEMP_BUF_LEN
);
2859 while (start
!= finish
)
2861 end
= min (finish
, start
+ TEMP_BUF_LEN
);
2862 for (; i
< end
; i
++)
2863 buf
[i
- start
] = edit_get_byte (edit
, i
);
2864 len
-= mc_write (file
, (char *) buf
, end
- start
);
2875 /* --------------------------------------------------------------------------------------------- */
2878 edit_paste_from_history (WEdit
* edit
)
2881 edit_error_dialog (_("Error"), _("This function is not implemented"));
2884 /* --------------------------------------------------------------------------------------------- */
2887 edit_copy_to_X_buf_cmd (WEdit
* edit
)
2889 long start_mark
, end_mark
;
2890 if (eval_marks (edit
, &start_mark
, &end_mark
))
2892 if (!edit_save_block_to_clip_file (edit
, start_mark
, end_mark
))
2894 edit_error_dialog (_("Copy to clipboard"), get_sys_error (_("Unable to save to file")));
2897 /* try use external clipboard utility */
2898 mc_event_raise (MCEVENT_GROUP_CORE
, "clipboard_file_to_ext_clip", NULL
);
2903 /* --------------------------------------------------------------------------------------------- */
2906 edit_cut_to_X_buf_cmd (WEdit
* edit
)
2908 long start_mark
, end_mark
;
2909 if (eval_marks (edit
, &start_mark
, &end_mark
))
2911 if (!edit_save_block_to_clip_file (edit
, start_mark
, end_mark
))
2913 edit_error_dialog (_("Cut to clipboard"), _("Unable to save to file"));
2916 /* try use external clipboard utility */
2917 mc_event_raise (MCEVENT_GROUP_CORE
, "clipboard_file_to_ext_clip", NULL
);
2919 edit_block_delete_cmd (edit
);
2920 edit_mark_cmd (edit
, 1);
2924 /* --------------------------------------------------------------------------------------------- */
2927 edit_paste_from_X_buf_cmd (WEdit
* edit
)
2931 /* try use external clipboard utility */
2932 mc_event_raise (MCEVENT_GROUP_CORE
, "clipboard_file_from_ext_clip", NULL
);
2933 tmp
= mc_config_get_full_vpath (EDIT_CLIP_FILE
);
2934 edit_insert_file (edit
, tmp
);
2935 vfs_path_free (tmp
);
2939 /* --------------------------------------------------------------------------------------------- */
2941 * Ask user for the line and go to that line.
2942 * Negative numbers mean line from the end (i.e. -1 is the last line).
2946 edit_goto_cmd (WEdit
* edit
)
2949 static long line
= 0; /* line as typed, saved as default */
2954 g_snprintf (s
, sizeof (s
), "%ld", line
);
2955 f
= input_dialog (_("Goto line"), _("Enter line:"), MC_HISTORY_EDIT_GOTO_LINE
, line
? s
: "");
2965 l
= strtol (f
, &error
, 0);
2974 l
= edit
->total_lines
+ l
+ 2;
2975 edit_move_display (edit
, l
- edit
->widget
.lines
/ 2 - 1);
2976 edit_move_to_line (edit
, l
- 1);
2977 edit
->force
|= REDRAW_COMPLETELY
;
2982 /* --------------------------------------------------------------------------------------------- */
2983 /** Return 1 on success */
2986 edit_save_block_cmd (WEdit
* edit
)
2988 long start_mark
, end_mark
;
2991 if (eval_marks (edit
, &start_mark
, &end_mark
))
2994 tmp
= mc_config_get_full_path (EDIT_CLIP_FILE
);
2996 input_expand_dialog (_("Save block"), _("Enter file name:"),
2997 MC_HISTORY_EDIT_SAVE_BLOCK
, tmp
);
2999 edit_push_undo_action (edit
, KEY_PRESS
+ edit
->start_display
);
3009 if (edit_save_block (edit
, exp
, start_mark
, end_mark
))
3012 edit
->force
|= REDRAW_COMPLETELY
;
3018 edit_error_dialog (_("Save block"), get_sys_error (_("Cannot save file")));
3022 edit
->force
|= REDRAW_COMPLETELY
;
3027 /* --------------------------------------------------------------------------------------------- */
3029 /** returns TRUE on success */
3031 edit_insert_file_cmd (WEdit
* edit
)
3035 gboolean ret
= FALSE
;
3037 tmp
= mc_config_get_full_path (EDIT_CLIP_FILE
);
3038 exp
= input_expand_dialog (_("Insert file"), _("Enter file name:"),
3039 MC_HISTORY_EDIT_INSERT_FILE
, tmp
);
3042 edit_push_undo_action (edit
, KEY_PRESS
+ edit
->start_display
);
3044 if (exp
!= NULL
&& *exp
!= '\0')
3046 vfs_path_t
*exp_vpath
;
3048 exp_vpath
= vfs_path_from_str (exp
);
3049 ret
= (edit_insert_file (edit
, exp_vpath
) >= 0);
3050 vfs_path_free (exp_vpath
);
3053 edit_error_dialog (_("Insert file"), get_sys_error (_("Cannot insert file")));
3058 edit
->force
|= REDRAW_COMPLETELY
;
3062 /* --------------------------------------------------------------------------------------------- */
3063 /** sorts a block, returns -1 on system fail, 1 on cancel and 0 on success */
3066 edit_sort_cmd (WEdit
* edit
)
3068 static char *old
= 0;
3069 char *exp
, *tmp
, *tmp_edit_block_name
, *tmp_edit_temp_name
;
3070 long start_mark
, end_mark
;
3073 if (eval_marks (edit
, &start_mark
, &end_mark
))
3075 edit_error_dialog (_("Sort block"), _("You must first highlight a block of text"));
3079 tmp
= mc_config_get_full_path (EDIT_BLOCK_FILE
);
3080 edit_save_block (edit
, tmp
, start_mark
, end_mark
);
3083 exp
= input_dialog (_("Run sort"),
3084 _("Enter sort options (see manpage) separated by whitespace:"),
3085 MC_HISTORY_EDIT_SORT
, (old
!= NULL
) ? old
: "");
3091 tmp_edit_block_name
= mc_config_get_full_path (EDIT_BLOCK_FILE
);
3092 tmp_edit_temp_name
= mc_config_get_full_path (EDIT_TEMP_FILE
);
3094 g_strconcat (" sort ", exp
, " ", tmp_edit_block_name
,
3095 " > ", tmp_edit_temp_name
, (char *) NULL
);
3096 g_free (tmp_edit_temp_name
);
3097 g_free (tmp_edit_block_name
);
3103 if (e
== -1 || e
== 127)
3105 edit_error_dialog (_("Sort"), get_sys_error (_("Cannot execute sort command")));
3110 sprintf (q
, "%d ", e
);
3111 tmp
= g_strdup_printf (_("Sort returned non-zero: %s"), q
);
3112 edit_error_dialog (_("Sort"), tmp
);
3118 edit
->force
|= REDRAW_COMPLETELY
;
3120 if (edit_block_delete_cmd (edit
))
3124 vfs_path_t
*tmp_vpath
;
3126 tmp_vpath
= mc_config_get_full_vpath (EDIT_TEMP_FILE
);
3127 edit_insert_file (edit
, tmp_vpath
);
3128 vfs_path_free (tmp_vpath
);
3133 /* --------------------------------------------------------------------------------------------- */
3135 * Ask user for a command, execute it and paste its output back to the
3140 edit_ext_cmd (WEdit
* edit
)
3142 char *exp
, *tmp
, *tmp_edit_temp_file
;
3146 input_dialog (_("Paste output of external command"),
3147 _("Enter shell command(s):"), MC_HISTORY_EDIT_PASTE_EXTCMD
, NULL
);
3152 tmp_edit_temp_file
= mc_config_get_full_path (EDIT_TEMP_FILE
);
3153 tmp
= g_strconcat (exp
, " > ", tmp_edit_temp_file
, (char *) NULL
);
3154 g_free (tmp_edit_temp_file
);
3161 edit_error_dialog (_("External command"), get_sys_error (_("Cannot execute command")));
3165 edit
->force
|= REDRAW_COMPLETELY
;
3168 vfs_path_t
*tmp_vpath
;
3170 tmp_vpath
= mc_config_get_full_vpath (EDIT_TEMP_FILE
);
3171 edit_insert_file (edit
, tmp_vpath
);
3172 vfs_path_free (tmp_vpath
);
3177 /* --------------------------------------------------------------------------------------------- */
3178 /** if block is 1, a block must be highlighted and the shell command
3179 processes it. If block is 0 the shell command is a straight system
3180 command, that just produces some output which is to be inserted */
3183 edit_block_process_cmd (WEdit
* edit
, int macro_number
)
3186 char *macros_fname
= NULL
;
3188 fname
= g_strdup_printf ("%s.%i.sh", MC_EXTMACRO_FILE
, macro_number
);
3189 macros_fname
= g_build_filename (mc_config_get_data_path (), fname
, (char *) NULL
);
3190 user_menu (edit
, macros_fname
, 0);
3192 g_free (macros_fname
);
3193 edit
->force
|= REDRAW_COMPLETELY
;
3196 /* --------------------------------------------------------------------------------------------- */
3199 edit_mail_dialog (WEdit
* edit
)
3202 char *tmail_subject
;
3205 static char *mail_cc_last
= 0;
3206 static char *mail_subject_last
= 0;
3207 static char *mail_to_last
= 0;
3209 QuickWidget quick_widgets
[] = {
3210 /* 0 */ QUICK_BUTTON (6, 10, 9, MAIL_DLG_HEIGHT
, N_("&Cancel"), B_CANCEL
, NULL
),
3211 /* 1 */ QUICK_BUTTON (2, 10, 9, MAIL_DLG_HEIGHT
, N_("&OK"), B_ENTER
, NULL
),
3212 /* 2 */ QUICK_INPUT (3, 50, 8, MAIL_DLG_HEIGHT
, "", 44, 0, "mail-dlg-input", &tmail_cc
),
3213 /* 3 */ QUICK_LABEL (3, 50, 7, MAIL_DLG_HEIGHT
, N_("Copies to")),
3214 /* 4 */ QUICK_INPUT (3, 50, 6, MAIL_DLG_HEIGHT
, "", 44, 0, "mail-dlg-input-2",
3216 /* 5 */ QUICK_LABEL (3, 50, 5, MAIL_DLG_HEIGHT
, N_("Subject")),
3217 /* 6 */ QUICK_INPUT (3, 50, 4, MAIL_DLG_HEIGHT
, "", 44, 0, "mail-dlg-input-3", &tmail_to
),
3218 /* 7 */ QUICK_LABEL (3, 50, 3, MAIL_DLG_HEIGHT
, N_("To")),
3219 /* 8 */ QUICK_LABEL (3, 50, 2, MAIL_DLG_HEIGHT
, N_("mail -s <subject> -c <cc> <to>")),
3223 QuickDialog Quick_input
= {
3224 50, MAIL_DLG_HEIGHT
, -1, -1, N_("Mail"),
3225 "[Input Line Keys]", quick_widgets
, NULL
, FALSE
3228 quick_widgets
[2].u
.input
.text
= mail_cc_last
? mail_cc_last
: "";
3229 quick_widgets
[4].u
.input
.text
= mail_subject_last
? mail_subject_last
: "";
3230 quick_widgets
[6].u
.input
.text
= mail_to_last
? mail_to_last
: "";
3232 if (quick_dialog (&Quick_input
) != B_CANCEL
)
3234 g_free (mail_cc_last
);
3235 g_free (mail_subject_last
);
3236 g_free (mail_to_last
);
3237 mail_cc_last
= tmail_cc
;
3238 mail_subject_last
= tmail_subject
;
3239 mail_to_last
= tmail_to
;
3240 pipe_mail (edit
, mail_to_last
, mail_subject_last
, mail_cc_last
);
3245 /*******************/
3246 /* Word Completion */
3247 /*******************/
3249 /* --------------------------------------------------------------------------------------------- */
3251 * Complete current word using regular expression search
3252 * backwards beginning at the current cursor position.
3256 edit_complete_word_cmd (WEdit
* edit
)
3258 gsize i
, max_len
, word_len
= 0, num_compl
= 0;
3259 long word_start
= 0;
3260 unsigned char *bufpos
;
3262 struct selection
compl[MAX_WORD_COMPLETIONS
]; /* completions */
3264 /* search start of word to be completed */
3265 if (!edit_find_word_start (edit
, &word_start
, &word_len
))
3268 /* prepare match expression */
3269 bufpos
= &edit
->buffers1
[word_start
>> S_EDIT_BUF_SIZE
][word_start
& M_EDIT_BUF_SIZE
];
3271 /* match_expr = g_strdup_printf ("\\b%.*s[a-zA-Z_0-9]+", word_len, bufpos); */
3274 ("(^|\\s+|\\b)%.*s[^\\s\\.=\\+\\[\\]\\(\\)\\,\\;\\:\\\"\\'\\-\\?\\/\\|\\\\\\{\\}\\*\\&\\^\\%%\\$#@\\!]+",
3275 (int) word_len
, bufpos
);
3277 /* collect the possible completions */
3278 /* start search from begin to end of file */
3280 edit_collect_completions (edit
, word_start
, word_len
, match_expr
,
3281 (struct selection
*) &compl, &num_compl
);
3285 /* insert completed word if there is only one match */
3288 for (i
= word_len
; i
< compl[0].len
; i
++)
3289 edit_insert (edit
, *(compl[0].text
+ i
));
3291 /* more than one possible completion => ask the user */
3294 /* !!! usually only a beep is expected and when <ALT-TAB> is !!! */
3295 /* !!! pressed again the selection dialog pops up, but that !!! */
3296 /* !!! seems to require a further internal state !!! */
3299 /* let the user select the preferred completion */
3300 editcmd_dialog_completion_show (edit
, max_len
, word_len
,
3301 (struct selection
*) &compl, num_compl
);
3305 g_free (match_expr
);
3306 /* release memory before return */
3307 for (i
= 0; i
< num_compl
; i
++)
3308 g_free (compl[i
].text
);
3311 /* --------------------------------------------------------------------------------------------- */
3314 edit_select_codepage_cmd (WEdit
* edit
)
3317 if (do_select_codepage ())
3318 edit_set_codeset (edit
);
3320 edit
->force
= REDRAW_COMPLETELY
;
3321 edit_refresh_cmd (edit
);
3327 /* --------------------------------------------------------------------------------------------- */
3330 edit_insert_literal_cmd (WEdit
* edit
)
3332 int char_for_insertion
= editcmd_dialog_raw_key_query (_("Insert literal"),
3333 _("Press any key:"), 0);
3334 edit_execute_key_command (edit
, -1, ascii_alpha_to_cntrl (char_for_insertion
));
3337 /* --------------------------------------------------------------------------------------------- */
3340 edit_begin_end_macro_cmd (WEdit
* edit
)
3342 /* edit is a pointer to the widget */
3345 unsigned long command
= macro_index
< 0 ? CK_MacroStartRecord
: CK_MacroStopRecord
;
3346 edit_execute_key_command (edit
, command
, -1);
3350 /* --------------------------------------------------------------------------------------------- */
3353 edit_begin_end_repeat_cmd (WEdit
* edit
)
3355 /* edit is a pointer to the widget */
3358 unsigned long command
= macro_index
< 0 ? CK_RepeatStartRecord
: CK_RepeatStopRecord
;
3359 edit_execute_key_command (edit
, command
, -1);
3363 /* --------------------------------------------------------------------------------------------- */
3366 edit_load_forward_cmd (WEdit
* edit
)
3369 && edit_query_dialog2 (_("Warning"),
3370 _("Current text was modified without a file save.\n"
3371 "Continue discards these changes"), _("C&ontinue"),
3374 edit
->force
|= REDRAW_COMPLETELY
;
3378 if (edit_stack_iterator
+ 1 >= MAX_HISTORY_MOVETO
)
3381 if (edit_history_moveto
[edit_stack_iterator
+ 1].line
< 1)
3384 edit_stack_iterator
++;
3385 if (edit_history_moveto
[edit_stack_iterator
].filename_vpath
!= NULL
)
3386 return edit_reload_line (edit
, edit_history_moveto
[edit_stack_iterator
].filename_vpath
,
3387 edit_history_moveto
[edit_stack_iterator
].line
);
3392 /* --------------------------------------------------------------------------------------------- */
3395 edit_load_back_cmd (WEdit
* edit
)
3398 && edit_query_dialog2 (_("Warning"),
3399 _("Current text was modified without a file save.\n"
3400 "Continue discards these changes"), _("C&ontinue"),
3403 edit
->force
|= REDRAW_COMPLETELY
;
3407 /* we are in the bottom of the stack, NO WAY! */
3408 if (edit_stack_iterator
== 0)
3411 edit_stack_iterator
--;
3412 if (edit_history_moveto
[edit_stack_iterator
].filename_vpath
!= NULL
)
3413 return edit_reload_line (edit
, edit_history_moveto
[edit_stack_iterator
].filename_vpath
,
3414 edit_history_moveto
[edit_stack_iterator
].line
);
3419 /* --------------------------------------------------------------------------------------------- */
3422 edit_get_match_keyword_cmd (WEdit
* edit
)
3424 gsize word_len
= 0, max_len
= 0;
3427 long word_start
= 0;
3428 unsigned char *bufpos
;
3432 char *tagfile
= NULL
;
3434 etags_hash_t def_hash
[MAX_DEFINITIONS
];
3436 for (i
= 0; i
< MAX_DEFINITIONS
; i
++)
3438 def_hash
[i
].filename
= NULL
;
3441 /* search start of word to be completed */
3442 if (!edit_find_word_start (edit
, &word_start
, &word_len
))
3445 /* prepare match expression */
3446 bufpos
= &edit
->buffers1
[word_start
>> S_EDIT_BUF_SIZE
][word_start
& M_EDIT_BUF_SIZE
];
3447 match_expr
= g_strdup_printf ("%.*s", (int) word_len
, bufpos
);
3449 ptr
= g_get_current_dir ();
3450 path
= g_strconcat (ptr
, G_DIR_SEPARATOR_S
, (char *) NULL
);
3453 /* Recursive search file 'TAGS' in parent dirs */
3456 ptr
= g_path_get_dirname (path
);
3460 tagfile
= mc_build_filename (path
, TAGS_NAME
, (char *) NULL
);
3461 if (exist_file (tagfile
))
3464 while (strcmp (path
, G_DIR_SEPARATOR_S
) != 0);
3469 etags_set_definition_hash (tagfile
, path
, match_expr
, (etags_hash_t
*) & def_hash
);
3474 max_len
= MAX_WIDTH_DEF_DIALOG
;
3478 editcmd_dialog_select_definition_show (edit
, match_expr
, max_len
, word_len
,
3479 (etags_hash_t
*) & def_hash
, num_def
);
3481 g_free (match_expr
);
3484 /* --------------------------------------------------------------------------------------------- */