diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-12-04 16:43:51 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-12-04 16:43:51 +0300 |
commit | 48308687979f26a3498e7af94eacc8fe34307a78 (patch) | |
tree | afc05823788bc2985f29e33c667e631be2554cad /src/parser.h | |
parent | 3a823fb43ba0abe52f3152d337675e9ed9a3f175 (diff) | |
download | sciteco-48308687979f26a3498e7af94eacc8fe34307a78.tar.gz |
the <Xq> command now supports the @ modifier for cutting into the register
* Can be freely combined with the colon-modifier as well.
:@Xq cut-appends to register q.
* This simply deletes the given buffer range after the copy or append operation
as if followed by another <K> command.
* This has indeed been a very annoying missing feature, as you often have to retype the
range for a K or D command.
At the same time, this cannot be reasonably solved with a macro since macros
do not accept Q-Register arguments -- so we would have to restrict ourselves to one or a few
selected registers.
I was also considering to solve this with a special stack operation that duplicates the
top values, so that Xq leaves arguments for K, but this couldn't work for cutting lines
and would also be longer to type.
* It's the first non-string command that accepts @.
Others may follow in the future.
We're approaching ITS TECO madness levels.
Diffstat (limited to 'src/parser.h')
-rw-r--r-- | src/parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h index 3d69013..1127dcd 100644 --- a/src/parser.h +++ b/src/parser.h @@ -504,6 +504,7 @@ void teco_machine_main_init(teco_machine_main_t *ctx, gboolean must_undo); gboolean teco_machine_main_eval_colon(teco_machine_main_t *ctx); +gboolean teco_machine_main_eval_at(teco_machine_main_t *ctx); gboolean teco_machine_main_step(teco_machine_main_t *ctx, const gchar *macro, gsize stop_pos, GError **error); |