2 * Heavily inspired (and partially based upon) the X11 version of
3 * Rob Pike's sam text editor originally written for Plan 9.
5 * Copyright © 2016-2018 Marc André Tanner <mat at brain-dump.org>
6 * Copyright © 1998 by Lucent Technologies
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose without fee is hereby granted, provided that this entire notice
10 * is included in all copies of any software which is or includes a copy
11 * or modification of this software and in all copies of the supporting
12 * documentation for such software.
14 * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
15 * WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY
16 * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
17 * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
30 #include "text-motions.h"
31 #include "text-objects.h"
32 #include "text-regex.h"
37 typedef struct Address Address
;
38 typedef struct Command Command
;
39 typedef struct CommandDef CommandDef
;
43 TRANSCRIPT_INSERT
= 1 << 0,
44 TRANSCRIPT_DELETE
= 1 << 1,
45 TRANSCRIPT_CHANGE
= TRANSCRIPT_INSERT
|TRANSCRIPT_DELETE
,
47 Win
*win
; /* window in which changed file is being displayed */
48 Selection
*sel
; /* selection associated with this change, might be NULL */
49 Filerange range
; /* inserts are denoted by zero sized range (same start/end) */
50 const char *data
; /* will be free(3)-ed after transcript has been processed */
51 size_t len
; /* size in bytes of the chunk pointed to by data */
52 Change
*next
; /* modification position increase monotonically */
53 int count
; /* how often should data be inserted? */
57 char type
; /* # (char) l (line) g (goto line) / ? . $ + - , ; % ' */
58 Regex
*regex
; /* NULL denotes default for x, y, X, and Y commands */
59 size_t number
; /* line or character number */
60 Address
*left
; /* left hand side of a compound address , ; */
61 Address
*right
; /* either right hand side of a compound address or next address */
65 int start
, end
; /* interval [n,m] */
66 bool mod
; /* % every n-th match, implies n == m */
70 const char *argv
[MAX_ARGV
];/* [0]=cmd-name, [1..MAX_ARGV-2]=arguments, last element always NULL */
71 Address
*address
; /* range of text for command */
72 Regex
*regex
; /* regex to match, used by x, y, g, v, X, Y */
73 const CommandDef
*cmddef
; /* which command is this? */
74 Count count
; /* command count, defaults to [0,+inf] */
75 int iteration
; /* current command loop iteration */
76 char flags
; /* command specific flags */
77 Command
*cmd
; /* target of x, y, g, v, X, Y, { */
78 Command
*next
; /* next command in {} group */
82 const char *name
; /* command name */
83 VIS_HELP_DECL(const char *help
;) /* short, one-line help text */
85 CMD_NONE
= 0, /* standalone command without any arguments */
86 CMD_CMD
= 1 << 0, /* does the command take a sub/target command? */
87 CMD_REGEX
= 1 << 1, /* regex after command? */
88 CMD_REGEX_DEFAULT
= 1 << 2, /* is the regex optional i.e. can we use a default? */
89 CMD_COUNT
= 1 << 3, /* does the command support a count as in s2/../? */
90 CMD_TEXT
= 1 << 4, /* does the command need a text to insert? */
91 CMD_ADDRESS_NONE
= 1 << 5, /* is it an error to specify an address for the command? */
92 CMD_ADDRESS_POS
= 1 << 6, /* no address implies an empty range at current cursor position */
93 CMD_ADDRESS_LINE
= 1 << 7, /* if no address is given, use the current line */
94 CMD_ADDRESS_AFTER
= 1 << 8, /* if no address is given, begin at the start of the next line */
95 CMD_ADDRESS_ALL
= 1 << 9, /* if no address is given, apply to whole file (independent of #cursors) */
96 CMD_ADDRESS_ALL_1CURSOR
= 1 << 10, /* if no address is given and only 1 cursor exists, apply to whole file */
97 CMD_SHELL
= 1 << 11, /* command needs a shell command as argument */
98 CMD_FORCE
= 1 << 12, /* can the command be forced with ! */
99 CMD_ARGV
= 1 << 13, /* whether shell like argument splitting is desired */
100 CMD_ONCE
= 1 << 14, /* command should only be executed once, not for every selection */
101 CMD_LOOP
= 1 << 15, /* a looping construct like `x`, `y` */
102 CMD_GROUP
= 1 << 16, /* a command group { ... } */
103 CMD_DESTRUCTIVE
= 1 << 17, /* command potentially destroys window */
105 const char *defcmd
; /* name of a default target command */
106 bool (*func
)(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*); /* command implementation */
110 static bool cmd_insert(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
111 static bool cmd_append(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
112 static bool cmd_change(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
113 static bool cmd_delete(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
114 static bool cmd_guard(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
115 static bool cmd_extract(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
116 static bool cmd_select(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
117 static bool cmd_print(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
118 static bool cmd_files(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
119 static bool cmd_pipein(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
120 static bool cmd_pipeout(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
121 static bool cmd_filter(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
122 static bool cmd_launch(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
123 static bool cmd_substitute(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
124 static bool cmd_write(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
125 static bool cmd_read(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
126 static bool cmd_edit(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
127 static bool cmd_quit(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
128 static bool cmd_cd(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
130 static bool cmd_set(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
131 static bool cmd_open(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
132 static bool cmd_qall(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
133 static bool cmd_split(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
134 static bool cmd_vsplit(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
135 static bool cmd_new(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
136 static bool cmd_vnew(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
137 static bool cmd_wq(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
138 static bool cmd_earlier_later(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
139 static bool cmd_help(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
140 static bool cmd_map(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
141 static bool cmd_unmap(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
142 static bool cmd_langmap(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
143 static bool cmd_user(Vis
*, Win
*, Command
*, const char *argv
[], Selection
*, Filerange
*);
145 static const CommandDef cmds
[] = {
147 // flags, default command, implemenation
149 "a", VIS_HELP("Append text after range")
150 CMD_TEXT
, NULL
, cmd_append
152 "c", VIS_HELP("Change text in range")
153 CMD_TEXT
, NULL
, cmd_change
155 "d", VIS_HELP("Delete text in range")
156 CMD_NONE
, NULL
, cmd_delete
158 "g", VIS_HELP("If range contains regexp, run command")
159 CMD_COUNT
|CMD_REGEX
|CMD_CMD
, "p", cmd_guard
161 "i", VIS_HELP("Insert text before range")
162 CMD_TEXT
, NULL
, cmd_insert
164 "p", VIS_HELP("Create selection covering range")
165 CMD_NONE
, NULL
, cmd_print
167 "s", VIS_HELP("Substitute: use x/pattern/ c/replacement/ instead")
168 CMD_SHELL
|CMD_ADDRESS_LINE
, NULL
, cmd_substitute
170 "v", VIS_HELP("If range does not contain regexp, run command")
171 CMD_COUNT
|CMD_REGEX
|CMD_CMD
, "p", cmd_guard
173 "x", VIS_HELP("Set range and run command on each match")
174 CMD_CMD
|CMD_REGEX
|CMD_REGEX_DEFAULT
|CMD_ADDRESS_ALL_1CURSOR
|CMD_LOOP
, "p", cmd_extract
176 "y", VIS_HELP("As `x` but select unmatched text")
177 CMD_CMD
|CMD_REGEX
|CMD_ADDRESS_ALL_1CURSOR
|CMD_LOOP
, "p", cmd_extract
179 "X", VIS_HELP("Run command on files whose name matches")
180 CMD_CMD
|CMD_REGEX
|CMD_REGEX_DEFAULT
|CMD_ADDRESS_NONE
|CMD_ONCE
, NULL
, cmd_files
182 "Y", VIS_HELP("As `X` but select unmatched files")
183 CMD_CMD
|CMD_REGEX
|CMD_ADDRESS_NONE
|CMD_ONCE
, NULL
, cmd_files
185 ">", VIS_HELP("Send range to stdin of command")
186 CMD_SHELL
|CMD_ADDRESS_LINE
, NULL
, cmd_pipeout
188 "<", VIS_HELP("Replace range by stdout of command")
189 CMD_SHELL
|CMD_ADDRESS_POS
, NULL
, cmd_pipein
191 "|", VIS_HELP("Pipe range through command")
192 CMD_SHELL
, NULL
, cmd_filter
194 "!", VIS_HELP("Run the command")
195 CMD_SHELL
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_launch
197 "w", VIS_HELP("Write range to named file")
198 CMD_ARGV
|CMD_FORCE
|CMD_ONCE
|CMD_ADDRESS_ALL
, NULL
, cmd_write
200 "r", VIS_HELP("Replace range by contents of file")
201 CMD_ARGV
|CMD_ADDRESS_AFTER
, NULL
, cmd_read
203 "{", VIS_HELP("Start of command group")
204 CMD_GROUP
, NULL
, NULL
206 "}", VIS_HELP("End of command group" )
209 "e", VIS_HELP("Edit file")
210 CMD_ARGV
|CMD_FORCE
|CMD_ONCE
|CMD_ADDRESS_NONE
|CMD_DESTRUCTIVE
, NULL
, cmd_edit
212 "q", VIS_HELP("Quit the current window")
213 CMD_ARGV
|CMD_FORCE
|CMD_ONCE
|CMD_ADDRESS_NONE
|CMD_DESTRUCTIVE
, NULL
, cmd_quit
215 "cd", VIS_HELP("Change directory")
216 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_cd
218 /* vi(m) related commands */
220 "help", VIS_HELP("Show this help")
221 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_help
223 "map", VIS_HELP("Map key binding `:map <mode> <lhs> <rhs>`")
224 CMD_ARGV
|CMD_FORCE
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_map
226 "map-window", VIS_HELP("As `map` but window local")
227 CMD_ARGV
|CMD_FORCE
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_map
229 "unmap", VIS_HELP("Unmap key binding `:unmap <mode> <lhs>`")
230 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_unmap
232 "unmap-window", VIS_HELP("As `unmap` but window local")
233 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_unmap
235 "langmap", VIS_HELP("Map keyboard layout `:langmap <locale-keys> <latin-keys>`")
236 CMD_ARGV
|CMD_FORCE
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_langmap
238 "new", VIS_HELP("Create new window")
239 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_new
241 "open", VIS_HELP("Open file")
242 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_open
244 "qall", VIS_HELP("Exit vis")
245 CMD_ARGV
|CMD_FORCE
|CMD_ONCE
|CMD_ADDRESS_NONE
|CMD_DESTRUCTIVE
, NULL
, cmd_qall
247 "set", VIS_HELP("Set option")
248 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_set
250 "split", VIS_HELP("Horizontally split window")
251 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_split
253 "vnew", VIS_HELP("As `:new` but split vertically")
254 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_vnew
256 "vsplit", VIS_HELP("Vertically split window")
257 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_vsplit
259 "wq", VIS_HELP("Write file and quit")
260 CMD_ARGV
|CMD_FORCE
|CMD_ONCE
|CMD_ADDRESS_ALL
|CMD_DESTRUCTIVE
, NULL
, cmd_wq
262 "earlier", VIS_HELP("Go to older text state")
263 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_earlier_later
265 "later", VIS_HELP("Go to newer text state")
266 CMD_ARGV
|CMD_ONCE
|CMD_ADDRESS_NONE
, NULL
, cmd_earlier_later
268 { NULL
, VIS_HELP(NULL
) CMD_NONE
, NULL
, NULL
},
271 static const CommandDef cmddef_select
= {
272 NULL
, VIS_HELP(NULL
) CMD_NONE
, NULL
, cmd_select
275 /* :set command options */
277 const char *names
[3]; /* name and optional alias */
278 enum VisOption flags
; /* option type, etc. */
279 VIS_HELP_DECL(const char *help
;) /* short, one line help text */
280 VisOptionFunction
*func
; /* option handler, NULL for bulitins */
281 void *context
; /* context passed to option handler function */
292 OPTION_SHOW_NEWLINES
,
295 OPTION_NUMBER_RELATIVE
,
300 OPTION_CHANGE_256COLORS
,
304 static const OptionDef options
[] = {
307 VIS_OPTION_TYPE_STRING
,
308 VIS_HELP("Shell to use for external commands (default: $SHELL, /etc/passwd, /bin/sh)")
310 [OPTION_ESCDELAY
] = {
312 VIS_OPTION_TYPE_NUMBER
,
313 VIS_HELP("Milliseconds to wait to distinguish <Escape> from terminal escape sequences")
315 [OPTION_AUTOINDENT
] = {
316 { "autoindent", "ai" },
317 VIS_OPTION_TYPE_BOOL
,
318 VIS_HELP("Copy leading white space from previous line")
320 [OPTION_EXPANDTAB
] = {
321 { "expandtab", "et" },
322 VIS_OPTION_TYPE_BOOL
,
323 VIS_HELP("Replace entered <Tab> with `tabwidth` spaces")
325 [OPTION_TABWIDTH
] = {
326 { "tabwidth", "tw" },
327 VIS_OPTION_TYPE_NUMBER
,
328 VIS_HELP("Number of spaces to display (and insert if `expandtab` is enabled) for a tab")
330 [OPTION_SHOW_SPACES
] = {
332 VIS_OPTION_TYPE_BOOL
|VIS_OPTION_NEED_WINDOW
,
333 VIS_HELP("Display replacement symbol instead of a space")
335 [OPTION_SHOW_TABS
] = {
337 VIS_OPTION_TYPE_BOOL
|VIS_OPTION_NEED_WINDOW
,
338 VIS_HELP("Display replacement symbol for tabs")
340 [OPTION_SHOW_NEWLINES
] = {
342 VIS_OPTION_TYPE_BOOL
|VIS_OPTION_NEED_WINDOW
,
343 VIS_HELP("Display replacement symbol for newlines")
345 [OPTION_SHOW_EOF
] = {
347 VIS_OPTION_TYPE_BOOL
|VIS_OPTION_NEED_WINDOW
,
348 VIS_HELP("Display replacement symbol for lines after the end of the file")
352 VIS_OPTION_TYPE_BOOL
|VIS_OPTION_NEED_WINDOW
,
353 VIS_HELP("Display absolute line numbers")
355 [OPTION_NUMBER_RELATIVE
] = {
356 { "relativenumbers", "rnu" },
357 VIS_OPTION_TYPE_BOOL
|VIS_OPTION_NEED_WINDOW
,
358 VIS_HELP("Display relative line numbers")
360 [OPTION_CURSOR_LINE
] = {
361 { "cursorline", "cul" },
362 VIS_OPTION_TYPE_BOOL
|VIS_OPTION_NEED_WINDOW
,
363 VIS_HELP("Highlight current cursor line")
365 [OPTION_COLOR_COLUMN
] = {
366 { "colorcolumn", "cc" },
367 VIS_OPTION_TYPE_NUMBER
|VIS_OPTION_NEED_WINDOW
,
368 VIS_HELP("Highlight a fixed column")
370 [OPTION_SAVE_METHOD
] = {
372 VIS_OPTION_TYPE_STRING
|VIS_OPTION_NEED_WINDOW
,
373 VIS_HELP("Save method to use for current file 'auto', 'atomic' or 'inplace'")
375 [OPTION_LOAD_METHOD
] = {
377 VIS_OPTION_TYPE_STRING
,
378 VIS_HELP("How to load existing files 'auto', 'read' or 'mmap'")
380 [OPTION_CHANGE_256COLORS
] = {
381 { "change-256colors" },
382 VIS_OPTION_TYPE_BOOL
,
383 VIS_HELP("Change 256 color palette to support 24bit colors")
387 VIS_OPTION_TYPE_STRING
,
388 VIS_HELP("Vertical or horizontal window layout")
392 bool sam_init(Vis
*vis
) {
393 if (!(vis
->cmds
= map_new()))
396 for (const CommandDef
*cmd
= cmds
; cmd
&& cmd
->name
; cmd
++)
397 ret
&= map_put(vis
->cmds
, cmd
->name
, cmd
);
399 if (!(vis
->options
= map_new()))
401 for (int i
= 0; i
< LENGTH(options
); i
++) {
402 for (const char *const *name
= options
[i
].names
; *name
; name
++)
403 ret
&= map_put(vis
->options
, *name
, &options
[i
]);
409 const char *sam_error(enum SamError err
) {
410 static const char *error_msg
[] = {
411 [SAM_ERR_OK
] = "Success",
412 [SAM_ERR_MEMORY
] = "Out of memory",
413 [SAM_ERR_ADDRESS
] = "Bad address",
414 [SAM_ERR_NO_ADDRESS
] = "Command takes no address",
415 [SAM_ERR_UNMATCHED_BRACE
] = "Unmatched `}'",
416 [SAM_ERR_REGEX
] = "Bad regular expression",
417 [SAM_ERR_TEXT
] = "Bad text",
418 [SAM_ERR_SHELL
] = "Shell command expected",
419 [SAM_ERR_COMMAND
] = "Unknown command",
420 [SAM_ERR_EXECUTE
] = "Error executing command",
421 [SAM_ERR_NEWLINE
] = "Newline expected",
422 [SAM_ERR_MARK
] = "Invalid mark",
423 [SAM_ERR_CONFLICT
] = "Conflicting changes",
424 [SAM_ERR_WRITE_CONFLICT
] = "Can not write while changing",
425 [SAM_ERR_LOOP_INVALID_CMD
] = "Destructive command in looping construct",
426 [SAM_ERR_GROUP_INVALID_CMD
] = "Destructive command in group",
427 [SAM_ERR_COUNT
] = "Invalid count",
431 return idx
< LENGTH(error_msg
) ? error_msg
[idx
] : NULL
;
434 static void change_free(Change
*c
) {
437 free((char*)c
->data
);
441 static Change
*change_new(Transcript
*t
, enum ChangeType type
, Filerange
*range
, Win
*win
, Selection
*sel
) {
442 if (!text_range_valid(range
))
444 Change
**prev
, *next
;
445 if (t
->latest
&& t
->latest
->range
.end
<= range
->start
) {
446 prev
= &t
->latest
->next
;
447 next
= t
->latest
->next
;
452 while (next
&& next
->range
.end
<= range
->start
) {
456 if (next
&& next
->range
.start
< range
->end
) {
457 t
->error
= SAM_ERR_CONFLICT
;
460 Change
*new = calloc(1, sizeof *new);
473 static void sam_transcript_init(Transcript
*t
) {
474 memset(t
, 0, sizeof *t
);
477 static bool sam_transcript_error(Transcript
*t
, enum SamError error
) {
483 static void sam_transcript_free(Transcript
*t
) {
484 for (Change
*c
= t
->changes
, *next
; c
; c
= next
) {
490 static bool sam_insert(Win
*win
, Selection
*sel
, size_t pos
, const char *data
, size_t len
, int count
) {
491 Filerange range
= text_range_new(pos
, pos
);
492 Change
*c
= change_new(&win
->file
->transcript
, TRANSCRIPT_INSERT
, &range
, win
, sel
);
501 static bool sam_delete(Win
*win
, Selection
*sel
, Filerange
*range
) {
502 return change_new(&win
->file
->transcript
, TRANSCRIPT_DELETE
, range
, win
, sel
);
505 static bool sam_change(Win
*win
, Selection
*sel
, Filerange
*range
, const char *data
, size_t len
, int count
) {
506 Change
*c
= change_new(&win
->file
->transcript
, TRANSCRIPT_CHANGE
, range
, win
, sel
);
515 static Address
*address_new(void) {
516 Address
*addr
= calloc(1, sizeof *addr
);
522 static void address_free(Address
*addr
) {
525 text_regex_free(addr
->regex
);
526 address_free(addr
->left
);
527 address_free(addr
->right
);
531 static void skip_spaces(const char **s
) {
532 while (**s
== ' ' || **s
== '\t')
536 static char *parse_until(const char **s
, const char *until
, const char *escchars
, int type
){
539 size_t len
= strlen(until
);
540 bool escaped
= false;
542 for (; **s
&& (!memchr(until
, **s
, len
) || escaped
); (*s
)++) {
543 if (type
!= CMD_SHELL
&& !escaped
&& **s
== '\\') {
556 } else if (c
== 't') {
558 } else if (type
!= CMD_REGEX
&& type
!= CMD_TEXT
&& c
== '\\') {
559 // ignore one of the back slashes
561 bool delim
= memchr(until
, c
, len
);
562 bool esc
= escchars
&& memchr(escchars
, c
, strlen(escchars
));
564 buffer_append(&buf
, "\\", 1);
568 if (!buffer_append(&buf
, &c
, 1)) {
569 buffer_release(&buf
);
574 buffer_terminate(&buf
);
576 return buffer_move(&buf
);
579 static char *parse_delimited(const char **s
, int type
) {
580 char delim
[2] = { **s
, '\0' };
581 if (!delim
[0] || isspace((unsigned char)delim
[0]))
584 char *chunk
= parse_until(s
, delim
, NULL
, type
);
590 static int parse_number(const char **s
) {
592 int number
= strtoull(*s
, &end
, 10);
599 static char *parse_text(const char **s
, Count
*count
) {
601 const char *before
= *s
;
602 count
->start
= parse_number(s
);
607 char *text
= parse_delimited(s
, CMD_TEXT
);
608 return (!text
&& *s
!= before
) ? strdup("") : text
;
613 const char *start
= *s
+ 1;
616 for ((*s
)++; **s
&& (!dot
|| **s
!= '\n'); (*s
)++)
619 if (!dot
|| !buffer_put(&buf
, start
, *s
- start
- 1) ||
620 !buffer_append(&buf
, "\0", 1)) {
621 buffer_release(&buf
);
625 return buffer_move(&buf
);
628 static char *parse_shellcmd(Vis
*vis
, const char **s
) {
630 char *cmd
= parse_until(s
, "\n", NULL
, false);
632 const char *last_cmd
= register_get(vis
, &vis
->registers
[VIS_REG_SHELL
], NULL
);
633 return last_cmd
? strdup(last_cmd
) : NULL
;
635 register_put0(vis
, &vis
->registers
[VIS_REG_SHELL
], cmd
);
639 static void parse_argv(const char **s
, const char *argv
[], size_t maxarg
) {
640 for (size_t i
= 0; i
< maxarg
; i
++) {
642 if (**s
== '"' || **s
== '\'')
643 argv
[i
] = parse_delimited(s
, CMD_ARGV
);
645 argv
[i
] = parse_until(s
, " \t\n", "\'\"", CMD_ARGV
);
649 static bool valid_cmdname(const char *s
) {
650 unsigned char c
= (unsigned char)*s
;
651 return c
&& !isspace(c
) && !isdigit(c
) && (!ispunct(c
) || (c
== '-' && valid_cmdname(s
+1)));
654 static char *parse_cmdname(const char **s
) {
659 while (valid_cmdname(*s
))
660 buffer_append(&buf
, (*s
)++, 1);
662 buffer_terminate(&buf
);
664 return buffer_move(&buf
);
667 static Regex
*parse_regex(Vis
*vis
, const char **s
) {
668 const char *before
= *s
;
669 char *pattern
= parse_delimited(s
, CMD_REGEX
);
670 if (!pattern
&& *s
== before
)
672 Regex
*regex
= vis_regex(vis
, pattern
);
677 static enum SamError
parse_count(const char **s
, Count
*count
) {
678 count
->mod
= **s
== '%';
682 int n
= parse_number(s
);
684 return SAM_ERR_COUNT
;
690 const char *before
= *s
;
691 if (!(count
->start
= parse_number(s
)) && *s
!= before
)
692 return SAM_ERR_COUNT
;
694 count
->end
= count
->start
? count
->start
: INT_MAX
;
700 if (!(count
->end
= parse_number(s
)) && *s
!= before
)
701 return SAM_ERR_COUNT
;
703 count
->end
= INT_MAX
;
707 static Address
*address_parse_simple(Vis
*vis
, const char **s
, enum SamError
*err
) {
720 case '#': /* character #n */
722 addr
.number
= parse_number(s
);
724 case '0': case '1': case '2': case '3': case '4': /* line n */
725 case '5': case '6': case '7': case '8': case '9':
727 addr
.number
= parse_number(s
);
731 if ((addr
.number
= vis_mark_from(vis
, **s
)) == VIS_MARK_INVALID
) {
737 case '/': /* regexp forwards */
738 case '?': /* regexp backwards */
739 addr
.regex
= parse_regex(vis
, s
);
741 *err
= SAM_ERR_REGEX
;
745 case '$': /* end of file */
756 if ((addr
.right
= address_parse_simple(vis
, s
, err
))) {
757 switch (addr
.right
->type
) {
765 if (addr
.type
!= '+' && addr
.type
!= '-') {
766 Address
*plus
= address_new();
768 address_free(addr
.right
);
772 plus
->right
= addr
.right
;
779 Address
*ret
= address_new();
781 address_free(addr
.right
);
788 static Address
*address_parse_compound(Vis
*vis
, const char **s
, enum SamError
*err
) {
789 Address addr
= { 0 }, *left
= address_parse_simple(vis
, s
, err
), *right
= NULL
;
793 case ',': /* a1,a2 */
794 case ';': /* a1;a2 */
796 right
= address_parse_compound(vis
, s
, err
);
797 if (right
&& (right
->type
== ',' || right
->type
== ';') && !right
->left
) {
798 *err
= SAM_ERR_ADDRESS
;
809 Address
*ret
= address_new();
821 static Command
*command_new(const char *name
) {
822 Command
*cmd
= calloc(1, sizeof(Command
));
825 if (name
&& !(cmd
->argv
[0] = strdup(name
))) {
832 static void command_free(Command
*cmd
) {
836 for (Command
*c
= cmd
->cmd
, *next
; c
; c
= next
) {
841 for (const char **args
= cmd
->argv
; *args
; args
++)
843 address_free(cmd
->address
);
844 text_regex_free(cmd
->regex
);
848 static const CommandDef
*command_lookup(Vis
*vis
, const char *name
) {
849 return map_closest(vis
->cmds
, name
);
852 static Command
*command_parse(Vis
*vis
, const char **s
, enum SamError
*err
) {
854 *err
= SAM_ERR_COMMAND
;
857 Command
*cmd
= command_new(NULL
);
861 cmd
->address
= address_parse_compound(vis
, s
, err
);
864 cmd
->argv
[0] = parse_cmdname(s
);
867 char name
[2] = { **s
? **s
: 'p', '\0' };
870 if (!(cmd
->argv
[0] = strdup(name
)))
874 const CommandDef
*cmddef
= command_lookup(vis
, cmd
->argv
[0]);
876 *err
= SAM_ERR_COMMAND
;
880 cmd
->cmddef
= cmddef
;
882 if (strcmp(cmd
->argv
[0], "{") == 0) {
883 Command
*prev
= NULL
, *next
;
884 int level
= vis
->nesting_level
++;
886 while (**s
== ' ' || **s
== '\t' || **s
== '\n')
888 next
= command_parse(vis
, s
, err
);
895 } while ((prev
= next
));
896 if (level
!= vis
->nesting_level
) {
897 *err
= SAM_ERR_UNMATCHED_BRACE
;
900 } else if (strcmp(cmd
->argv
[0], "}") == 0) {
901 if (vis
->nesting_level
-- == 0) {
902 *err
= SAM_ERR_UNMATCHED_BRACE
;
909 if (cmddef
->flags
& CMD_ADDRESS_NONE
&& cmd
->address
) {
910 *err
= SAM_ERR_NO_ADDRESS
;
914 if (cmddef
->flags
& CMD_FORCE
&& **s
== '!') {
919 if ((cmddef
->flags
& CMD_COUNT
) && (*err
= parse_count(s
, &cmd
->count
)))
922 if (cmddef
->flags
& CMD_REGEX
) {
923 if ((cmddef
->flags
& CMD_REGEX_DEFAULT
) && (!**s
|| **s
== ' ')) {
926 const char *before
= *s
;
927 cmd
->regex
= parse_regex(vis
, s
);
928 if (!cmd
->regex
&& (*s
!= before
|| !(cmddef
->flags
& CMD_COUNT
))) {
929 *err
= SAM_ERR_REGEX
;
935 if (cmddef
->flags
& CMD_SHELL
&& !(cmd
->argv
[1] = parse_shellcmd(vis
, s
))) {
936 *err
= SAM_ERR_SHELL
;
940 if (cmddef
->flags
& CMD_TEXT
&& !(cmd
->argv
[1] = parse_text(s
, &cmd
->count
))) {
945 if (cmddef
->flags
& CMD_ARGV
) {
946 parse_argv(s
, &cmd
->argv
[1], MAX_ARGV
-2);
947 cmd
->argv
[MAX_ARGV
-1] = NULL
;
950 if (cmddef
->flags
& CMD_CMD
) {
952 if (cmddef
->defcmd
&& (**s
== '\n' || **s
== '}' || **s
== '\0')) {
955 if (!(cmd
->cmd
= command_new(cmddef
->defcmd
)))
957 cmd
->cmd
->cmddef
= command_lookup(vis
, cmddef
->defcmd
);
959 if (!(cmd
->cmd
= command_parse(vis
, s
, err
)))
961 if (strcmp(cmd
->argv
[0], "X") == 0 || strcmp(cmd
->argv
[0], "Y") == 0) {
962 Command
*sel
= command_new("select");
966 sel
->cmddef
= &cmddef_select
;
978 static Command
*sam_parse(Vis
*vis
, const char *cmd
, enum SamError
*err
) {
979 vis
->nesting_level
= 0;
980 const char **s
= &cmd
;
981 Command
*c
= command_parse(vis
, s
, err
);
984 while (**s
== ' ' || **s
== '\t' || **s
== '\n')
987 *err
= SAM_ERR_NEWLINE
;
992 Command
*sel
= command_new("select");
998 sel
->cmddef
= &cmddef_select
;
1002 static Filerange
address_line_evaluate(Address
*addr
, File
*file
, Filerange
*range
, int sign
) {
1003 Text
*txt
= file
->text
;
1004 size_t offset
= addr
->number
!= EPOS
? addr
->number
: 1;
1005 size_t start
= range
->start
, end
= range
->end
, line
;
1008 if (start
< end
&& end
> 0 && text_byte_get(txt
, end
-1, &c
) && c
== '\n')
1010 line
= text_lineno_by_pos(txt
, end
);
1011 line
= text_pos_by_lineno(txt
, line
+ offset
);
1012 } else if (sign
< 0) {
1013 line
= text_lineno_by_pos(txt
, start
);
1014 line
= offset
< line
? text_pos_by_lineno(txt
, line
- offset
) : 0;
1016 if (addr
->number
== 0)
1017 return text_range_new(0, 0);
1018 line
= text_pos_by_lineno(txt
, addr
->number
);
1021 if (addr
->type
== 'g')
1022 return text_range_new(line
, line
);
1024 return text_range_new(line
, text_line_next(txt
, line
));
1027 static Filerange
address_evaluate(Address
*addr
, File
*file
, Selection
*sel
, Filerange
*range
, int sign
) {
1028 Filerange ret
= text_range_empty();
1031 switch (addr
->type
) {
1034 ret
.start
= ret
.end
= range
->end
+ addr
->number
;
1036 ret
.start
= ret
.end
= range
->start
- addr
->number
;
1038 ret
= text_range_new(addr
->number
, addr
->number
);
1042 ret
= address_line_evaluate(addr
, file
, range
, sign
);
1047 Array
*marks
= &file
->marks
[addr
->number
];
1048 size_t idx
= sel
? view_selections_number(sel
) : 0;
1049 SelectionRegion
*sr
= array_get(marks
, idx
);
1051 pos
= text_mark_get(file
->text
, sr
->cursor
);
1052 ret
= text_range_new(pos
, pos
);
1056 sign
= sign
== 0 ? -1 : -sign
;
1060 ret
= text_object_search_forward(file
->text
, range
->end
, addr
->regex
);
1062 ret
= text_object_search_backward(file
->text
, range
->start
, addr
->regex
);
1066 size_t size
= text_size(file
->text
);
1067 ret
= text_range_new(size
, size
);
1075 sign
= addr
->type
== '+' ? +1 : -1;
1076 if (!addr
->right
|| addr
->right
->type
== '+' || addr
->right
->type
== '-')
1077 ret
= address_line_evaluate(addr
, file
, range
, sign
);
1082 Filerange left
, right
;
1084 left
= address_evaluate(addr
->left
, file
, sel
, range
, 0);
1086 left
= text_range_new(0, 0);
1088 if (addr
->type
== ';')
1092 right
= address_evaluate(addr
->right
, file
, sel
, range
, 0);
1094 size_t size
= text_size(file
->text
);
1095 right
= text_range_new(size
, size
);
1097 /* TODO: enforce strict ordering? */
1098 return text_range_union(&left
, &right
);
1101 return text_range_new(0, text_size(file
->text
));
1103 if (text_range_valid(&ret
))
1105 } while ((addr
= addr
->right
));
1110 static bool count_evaluate(Command
*cmd
) {
1111 Count
*count
= &cmd
->count
;
1113 return count
->start
? cmd
->iteration
% count
->start
== 0 : true;
1114 return count
->start
<= cmd
->iteration
&& cmd
->iteration
<= count
->end
;
1117 static bool sam_execute(Vis
*vis
, Win
*win
, Command
*cmd
, Selection
*sel
, Filerange
*range
) {
1119 if (cmd
->address
&& win
)
1120 *range
= address_evaluate(cmd
->address
, win
->file
, sel
, range
, 0);
1123 switch (cmd
->argv
[0][0]) {
1126 for (Command
*c
= cmd
->cmd
; c
&& ret
; c
= c
->next
)
1127 ret
&= sam_execute(vis
, win
, c
, NULL
, range
);
1128 view_selections_dispose_force(sel
);
1132 ret
= cmd
->cmddef
->func(vis
, win
, cmd
, cmd
->argv
, sel
, range
);
1138 static enum SamError
validate(Command
*cmd
, bool loop
, bool group
) {
1139 if (cmd
->cmddef
->flags
& CMD_DESTRUCTIVE
) {
1141 return SAM_ERR_LOOP_INVALID_CMD
;
1143 return SAM_ERR_GROUP_INVALID_CMD
;
1146 group
|= (cmd
->cmddef
->flags
& CMD_GROUP
);
1147 loop
|= (cmd
->cmddef
->flags
& CMD_LOOP
);
1148 for (Command
*c
= cmd
->cmd
; c
; c
= c
->next
) {
1149 enum SamError err
= validate(c
, loop
, group
);
1150 if (err
!= SAM_ERR_OK
)
1156 static enum SamError
command_validate(Command
*cmd
) {
1157 return validate(cmd
, false, false);
1160 static bool count_negative(Command
*cmd
) {
1161 if (cmd
->count
.start
< 0 || cmd
->count
.end
< 0)
1163 for (Command
*c
= cmd
->cmd
; c
; c
= c
->next
) {
1164 if (c
->cmddef
->func
!= cmd_extract
&& c
->cmddef
->func
!= cmd_select
) {
1165 if (count_negative(c
))
1172 static void count_init(Command
*cmd
, int max
) {
1173 Count
*count
= &cmd
->count
;
1175 if (count
->start
< 0)
1176 count
->start
+= max
;
1179 for (Command
*c
= cmd
->cmd
; c
; c
= c
->next
) {
1180 if (c
->cmddef
->func
!= cmd_extract
&& c
->cmddef
->func
!= cmd_select
)
1185 enum SamError
sam_cmd(Vis
*vis
, const char *s
) {
1186 enum SamError err
= SAM_ERR_OK
;
1190 Command
*cmd
= sam_parse(vis
, s
, &err
);
1192 if (err
== SAM_ERR_OK
)
1193 err
= SAM_ERR_MEMORY
;
1197 err
= command_validate(cmd
);
1198 if (err
!= SAM_ERR_OK
) {
1203 for (File
*file
= vis
->files
; file
; file
= file
->next
) {
1206 sam_transcript_init(&file
->transcript
);
1209 bool visual
= vis
->mode
->visual
;
1210 size_t primary_pos
= vis
->win
? view_cursor_get(vis
->win
->view
) : EPOS
;
1211 Filerange range
= text_range_empty();
1212 sam_execute(vis
, vis
->win
, cmd
, NULL
, &range
);
1214 for (File
*file
= vis
->files
; file
; file
= file
->next
) {
1217 Transcript
*t
= &file
->transcript
;
1218 if (t
->error
!= SAM_ERR_OK
) {
1220 sam_transcript_free(t
);
1223 vis_file_snapshot(vis
, file
);
1224 ptrdiff_t delta
= 0;
1225 for (Change
*c
= t
->changes
; c
; c
= c
->next
) {
1226 c
->range
.start
+= delta
;
1227 c
->range
.end
+= delta
;
1228 if (c
->type
& TRANSCRIPT_DELETE
) {
1229 text_delete_range(file
->text
, &c
->range
);
1230 delta
-= text_range_size(&c
->range
);
1231 if (c
->sel
&& c
->type
== TRANSCRIPT_DELETE
) {
1233 view_selections_dispose_force(c
->sel
);
1235 view_cursors_to(c
->sel
, c
->range
.start
);
1238 if (c
->type
& TRANSCRIPT_INSERT
) {
1239 for (int i
= 0; i
< c
->count
; i
++) {
1240 text_insert(file
->text
, c
->range
.start
, c
->data
, c
->len
);
1243 Filerange r
= text_range_new(c
->range
.start
,
1244 c
->range
.start
+ c
->len
* c
->count
);
1247 view_selections_set(c
->sel
, &r
);
1248 view_selections_anchor(c
->sel
, true);
1250 if (memchr(c
->data
, '\n', c
->len
))
1251 view_cursors_to(c
->sel
, r
.start
);
1253 view_cursors_to(c
->sel
, r
.end
);
1255 } else if (visual
) {
1256 Selection
*sel
= view_selections_new(c
->win
->view
, r
.start
);
1258 view_selections_set(sel
, &r
);
1259 view_selections_anchor(sel
, true);
1264 sam_transcript_free(&file
->transcript
);
1265 vis_file_snapshot(vis
, file
);
1268 for (Win
*win
= vis
->windows
; win
; win
= win
->next
)
1269 view_selections_normalize(win
->view
);
1272 if (primary_pos
!= EPOS
&& view_selection_disposed(vis
->win
->view
))
1273 view_cursor_to(vis
->win
->view
, primary_pos
);
1274 view_selections_primary_set(view_selections(vis
->win
->view
));
1275 vis_jumplist_save(vis
);
1276 bool completed
= true;
1277 for (Selection
*s
= view_selections(vis
->win
->view
); s
; s
= view_selections_next(s
)) {
1278 if (view_selections_anchored(s
)) {
1283 vis_mode_switch(vis
, completed
? VIS_MODE_NORMAL
: VIS_MODE_VISUAL
);
1289 /* process text input, substitute register content for backreferences etc. */
1290 Buffer
text(Vis
*vis
, const char *text
) {
1293 for (size_t len
= strcspn(text
, "\\&"); *text
; len
= strcspn(++text
, "\\&")) {
1294 buffer_append(&buf
, text
, len
);
1296 enum VisRegister regid
= VIS_REG_INVALID
;
1299 regid
= VIS_REG_AMPERSAND
;
1302 if ('1' <= text
[1] && text
[1] <= '9') {
1303 regid
= VIS_REG_1
+ text
[1] - '1';
1305 } else if (text
[1] == '\\' || text
[1] == '&') {
1315 if (regid
!= VIS_REG_INVALID
) {
1316 data
= register_get(vis
, &vis
->registers
[regid
], ®len
);
1321 buffer_append(&buf
, data
, reglen
);
1327 static bool cmd_insert(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1330 Buffer buf
= text(vis
, argv
[1]);
1331 size_t len
= buffer_length(&buf
);
1332 char *data
= buffer_move(&buf
);
1333 bool ret
= sam_insert(win
, sel
, range
->start
, data
, len
, cmd
->count
.start
);
1339 static bool cmd_append(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1342 Buffer buf
= text(vis
, argv
[1]);
1343 size_t len
= buffer_length(&buf
);
1344 char *data
= buffer_move(&buf
);
1345 bool ret
= sam_insert(win
, sel
, range
->end
, data
, len
, cmd
->count
.start
);
1351 static bool cmd_change(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1354 Buffer buf
= text(vis
, argv
[1]);
1355 size_t len
= buffer_length(&buf
);
1356 char *data
= buffer_move(&buf
);
1357 bool ret
= sam_change(win
, sel
, range
, data
, len
, cmd
->count
.start
);
1363 static bool cmd_delete(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1364 return win
&& sam_delete(win
, sel
, range
);
1367 static bool cmd_guard(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1371 RegexMatch captures
[1];
1372 size_t len
= text_range_size(range
);
1375 else if (!text_search_range_forward(win
->file
->text
, range
->start
, len
, cmd
->regex
, 1, captures
, 0))
1376 match
= captures
[0].start
< range
->end
;
1377 if ((count_evaluate(cmd
) && match
) ^ (argv
[0][0] == 'v'))
1378 return sam_execute(vis
, win
, cmd
->cmd
, sel
, range
);
1379 view_selections_dispose_force(sel
);
1383 static int extract(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
, bool simulate
) {
1386 Text
*txt
= win
->file
->text
;
1389 bool trailing_match
= false;
1390 size_t start
= range
->start
, end
= range
->end
, last_start
= EPOS
;
1391 size_t nsub
= 1 + text_regex_nsub(cmd
->regex
);
1394 RegexMatch match
[nsub
];
1395 while (start
< end
|| trailing_match
) {
1396 trailing_match
= false;
1398 int flags
= start
> range
->start
&&
1399 text_byte_get(txt
, start
- 1, &c
) && c
!= '\n' ?
1401 bool found
= !text_search_range_forward(txt
, start
, end
- start
,
1402 cmd
->regex
, nsub
, match
,
1404 Filerange r
= text_range_empty();
1406 if (argv
[0][0] == 'x')
1407 r
= text_range_new(match
[0].start
, match
[0].end
);
1409 r
= text_range_new(start
, match
[0].start
);
1410 if (match
[0].start
== match
[0].end
) {
1411 if (last_start
== match
[0].start
) {
1415 /* in Plan 9's regexp library ^ matches the beginning
1416 * of a line, however in POSIX with REG_NEWLINE ^
1417 * matches the zero-length string immediately after a
1418 * newline. Try filtering out the last such match at EOF.
1420 if (end
== match
[0].start
&& start
> range
->start
)
1423 start
= match
[0].end
;
1425 trailing_match
= true;
1427 if (argv
[0][0] == 'y')
1428 r
= text_range_new(start
, end
);
1432 if (text_range_valid(&r
)) {
1434 for (size_t i
= 0; i
< nsub
; i
++) {
1435 Register
*reg
= &vis
->registers
[VIS_REG_AMPERSAND
+i
];
1436 register_put_range(vis
, reg
, txt
, &match
[i
]);
1442 ret
&= sam_execute(vis
, win
, cmd
->cmd
, NULL
, &r
);
1447 size_t start
= range
->start
, end
= range
->end
;
1448 while (start
< end
) {
1449 size_t next
= text_line_next(txt
, start
);
1452 Filerange r
= text_range_new(start
, next
);
1453 if (start
== next
|| !text_range_valid(&r
))
1458 ret
&= sam_execute(vis
, win
, cmd
->cmd
, NULL
, &r
);
1464 view_selections_dispose_force(sel
);
1465 return simulate
? count
: ret
;
1468 static bool cmd_extract(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1472 if (count_negative(cmd
->cmd
))
1473 matches
= extract(vis
, win
, cmd
, argv
, sel
, range
, true);
1474 count_init(cmd
->cmd
, matches
+1);
1475 return extract(vis
, win
, cmd
, argv
, sel
, range
, false);
1478 static bool cmd_select(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1479 Filerange r
= text_range_empty();
1481 return sam_execute(vis
, NULL
, cmd
->cmd
, NULL
, &r
);
1483 View
*view
= win
->view
;
1484 Text
*txt
= win
->file
->text
;
1485 bool multiple_cursors
= view_selections_count(view
) > 1;
1486 Selection
*primary
= view_selections_primary_get(view
);
1488 if (vis
->mode
->visual
)
1489 count_init(cmd
->cmd
, view_selections_count(view
)+1);
1491 for (Selection
*s
= view_selections(view
), *next
; s
&& ret
; s
= next
) {
1492 next
= view_selections_next(s
);
1493 size_t pos
= view_cursors_pos(s
);
1494 if (vis
->mode
->visual
) {
1495 r
= view_selections_get(s
);
1496 } else if (cmd
->cmd
->address
) {
1497 /* convert a single line range to a goto line motion */
1498 if (!multiple_cursors
&& cmd
->cmd
->cmddef
->func
== cmd_print
) {
1499 Address
*addr
= cmd
->cmd
->address
;
1500 switch (addr
->type
) {
1506 if (addr
&& addr
->type
== 'l' && !addr
->right
)
1511 r
= text_range_new(pos
, pos
);
1512 } else if (cmd
->cmd
->cmddef
->flags
& CMD_ADDRESS_POS
) {
1513 r
= text_range_new(pos
, pos
);
1514 } else if (cmd
->cmd
->cmddef
->flags
& CMD_ADDRESS_LINE
) {
1515 r
= text_object_line(txt
, pos
);
1516 } else if (cmd
->cmd
->cmddef
->flags
& CMD_ADDRESS_AFTER
) {
1517 size_t next_line
= text_line_next(txt
, pos
);
1518 r
= text_range_new(next_line
, next_line
);
1519 } else if (cmd
->cmd
->cmddef
->flags
& CMD_ADDRESS_ALL
) {
1520 r
= text_range_new(0, text_size(txt
));
1521 } else if (!multiple_cursors
&& (cmd
->cmd
->cmddef
->flags
& CMD_ADDRESS_ALL_1CURSOR
)) {
1522 r
= text_range_new(0, text_size(txt
));
1524 r
= text_range_new(pos
, text_char_next(txt
, pos
));
1526 if (!text_range_valid(&r
))
1527 r
= text_range_new(0, 0);
1528 ret
&= sam_execute(vis
, win
, cmd
->cmd
, s
, &r
);
1529 if (cmd
->cmd
->cmddef
->flags
& CMD_ONCE
)
1533 if (vis
->win
&& vis
->win
->view
== view
&& primary
!= view_selections_primary_get(view
))
1534 view_selections_primary_set(view_selections(view
));
1538 static bool cmd_print(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1539 if (!win
|| !text_range_valid(range
))
1541 View
*view
= win
->view
;
1543 sel
= view_selections_new_force(view
, range
->start
);
1546 if (range
->start
!= range
->end
) {
1547 view_selections_set(sel
, range
);
1548 view_selections_anchor(sel
, true);
1550 view_cursors_to(sel
, range
->start
);
1551 view_selection_clear(sel
);
1556 static bool cmd_files(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1558 for (Win
*win
= vis
->windows
; win
; win
= win
->next
) {
1559 if (win
->file
->internal
)
1561 bool match
= !cmd
->regex
|| (win
->file
->name
&&
1562 text_regex_match(cmd
->regex
, win
->file
->name
, 0));
1563 if (match
^ (argv
[0][0] == 'Y')) {
1564 Filerange def
= text_range_new(0, 0);
1565 ret
&= sam_execute(vis
, win
, cmd
->cmd
, NULL
, &def
);
1571 static bool cmd_substitute(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1572 vis_info_show(vis
, "Use :x/pattern/ c/replacement/ instead");
1576 /* cmd_write stores win->file's contents end emits pre/post events.
1577 * If the range r covers the whole file, it is updated to account for
1578 * potential file's text mutation by a FILE_SAVE_PRE callback.
1580 static bool cmd_write(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*r
) {
1584 File
*file
= win
->file
;
1585 if (sam_transcript_error(&file
->transcript
, SAM_ERR_WRITE_CONFLICT
))
1588 Text
*text
= file
->text
;
1589 Filerange range_all
= text_range_new(0, text_size(text
));
1590 bool write_entire_file
= text_range_equal(r
, &range_all
);
1592 const char *filename
= argv
[1];
1594 filename
= file
->name
;
1596 if (file
->fd
== -1) {
1597 vis_info_show(vis
, "Filename expected");
1600 if (!strchr(argv
[0], 'q')) {
1601 vis_info_show(vis
, "No filename given, use 'wq' to write to stdout");
1605 if (!vis_event_emit(vis
, VIS_EVENT_FILE_SAVE_PRE
, file
, (char*)NULL
) && cmd
->flags
!= '!') {
1606 vis_info_show(vis
, "Rejected write to stdout by pre-save hook");
1609 /* a pre-save hook may have changed the text; need to re-take the range */
1610 if (write_entire_file
)
1611 *r
= text_range_new(0, text_size(text
));
1613 bool visual
= vis
->mode
->visual
;
1615 for (Selection
*s
= view_selections(win
->view
); s
; s
= view_selections_next(s
)) {
1616 Filerange range
= visual
? view_selections_get(s
) : *r
;
1617 ssize_t written
= text_write_range(text
, &range
, file
->fd
);
1618 if (written
== -1 || (size_t)written
!= text_range_size(&range
)) {
1619 vis_info_show(vis
, "Can not write to stdout");
1626 /* make sure the file is marked as saved i.e. not modified */
1627 text_save(text
, NULL
);
1628 vis_event_emit(vis
, VIS_EVENT_FILE_SAVE_POST
, file
, (char*)NULL
);
1632 if (!argv
[1] && cmd
->flags
!= '!') {
1633 if (vis
->mode
->visual
) {
1634 vis_info_show(vis
, "WARNING: file will be reduced to active selection");
1637 if (!write_entire_file
) {
1638 vis_info_show(vis
, "WARNING: file will be reduced to provided range");
1643 for (const char **name
= argv
[1] ? &argv
[1] : (const char*[]){ filename
, NULL
}; *name
; name
++) {
1645 char *path
= absolute_path(*name
);
1650 bool existing_file
= !stat(path
, &meta
);
1651 bool same_file
= existing_file
&& file
->name
&&
1652 file
->stat
.st_dev
== meta
.st_dev
&& file
->stat
.st_ino
== meta
.st_ino
;
1654 if (cmd
->flags
!= '!') {
1655 if (same_file
&& file
->stat
.st_mtime
&& file
->stat
.st_mtime
< meta
.st_mtime
) {
1656 vis_info_show(vis
, "WARNING: file has been changed since reading it");
1659 if (existing_file
&& !same_file
) {
1660 vis_info_show(vis
, "WARNING: file exists");
1665 if (!vis_event_emit(vis
, VIS_EVENT_FILE_SAVE_PRE
, file
, path
) && cmd
->flags
!= '!') {
1666 vis_info_show(vis
, "Rejected write to `%s' by pre-save hook", path
);
1669 /* a pre-save hook may have changed the text; need to re-take the range */
1670 if (write_entire_file
)
1671 *r
= text_range_new(0, text_size(text
));
1673 TextSave
*ctx
= text_save_begin(text
, path
, file
->save_method
);
1675 const char *msg
= errno
? strerror(errno
) : "try changing `:set savemethod`";
1676 vis_info_show(vis
, "Can't write `%s': %s", path
, msg
);
1680 bool failure
= false;
1681 bool visual
= vis
->mode
->visual
;
1683 for (Selection
*s
= view_selections(win
->view
); s
; s
= view_selections_next(s
)) {
1684 Filerange range
= visual
? view_selections_get(s
) : *r
;
1685 ssize_t written
= text_save_write_range(ctx
, &range
);
1686 failure
= (written
== -1 || (size_t)written
!= text_range_size(&range
));
1688 text_save_cancel(ctx
);
1696 if (failure
|| !text_save_commit(ctx
)) {
1697 vis_info_show(vis
, "Can't write `%s': %s", path
, strerror(errno
));
1702 file_name_set(file
, path
);
1706 file
->stat
= text_stat(text
);
1707 vis_event_emit(vis
, VIS_EVENT_FILE_SAVE_POST
, file
, path
);
1718 static ssize_t
read_buffer(void *context
, char *data
, size_t len
) {
1719 buffer_append(context
, data
, len
);
1723 static bool cmd_filter(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1727 Buffer bufout
, buferr
;
1728 buffer_init(&bufout
);
1729 buffer_init(&buferr
);
1731 int status
= vis_pipe(vis
, win
->file
, range
, &argv
[1], &bufout
, read_buffer
, &buferr
, read_buffer
);
1733 if (vis
->interrupted
) {
1734 vis_info_show(vis
, "Command cancelled");
1735 } else if (status
== 0) {
1736 size_t len
= buffer_length(&bufout
);
1737 char *data
= buffer_move(&bufout
);
1738 if (!sam_change(win
, sel
, range
, data
, len
, 1))
1741 vis_info_show(vis
, "Command failed %s", buffer_content0(&buferr
));
1744 buffer_release(&bufout
);
1745 buffer_release(&buferr
);
1747 return !vis
->interrupted
&& status
== 0;
1750 static bool cmd_launch(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1751 Filerange invalid
= text_range_new(sel
? view_cursors_pos(sel
) : range
->start
, EPOS
);
1752 return cmd_filter(vis
, win
, cmd
, argv
, sel
, &invalid
);
1755 static bool cmd_pipein(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1758 Filerange filter_range
= text_range_new(range
->end
, range
->end
);
1759 bool ret
= cmd_filter(vis
, win
, cmd
, argv
, sel
, &filter_range
);
1761 ret
= sam_delete(win
, NULL
, range
);
1765 static bool cmd_pipeout(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1769 buffer_init(&buferr
);
1771 int status
= vis_pipe(vis
, win
->file
, range
, (const char*[]){ argv
[1], NULL
}, NULL
, NULL
, &buferr
, read_buffer
);
1773 if (vis
->interrupted
)
1774 vis_info_show(vis
, "Command cancelled");
1775 else if (status
!= 0)
1776 vis_info_show(vis
, "Command failed %s", buffer_content0(&buferr
));
1778 buffer_release(&buferr
);
1780 return !vis
->interrupted
&& status
== 0;
1783 static bool cmd_cd(Vis
*vis
, Win
*win
, Command
*cmd
, const char *argv
[], Selection
*sel
, Filerange
*range
) {
1784 const char *dir
= argv
[1];
1786 dir
= getenv("HOME");
1787 return dir
&& chdir(dir
) == 0;
1790 #include "vis-cmds.c"