mirror of
https://github.com/tmux/tmux.git
synced 2024-11-05 10:28:48 +00:00
76d6d3641f
The vi-copy and emacs-copy mode key tables are gone, and instead copy mode commands are bound in one of two normal key tables ("copy-mode" or "copy-mode-vi"). Keys are bound to "send-keys -X copy-mode-command". So: bind -temacs-copy C-Up scroll-up bind -temacs-copy -R5 WheelUpPane scroll-up Becomes: bind -Tcopy-mode C-Up send -X scroll-up bind -Tcopy-mode WheelUpPane send -N5 -X scroll-up This allows the full command parser and command set to be used - for example, we can use the normal command prompt for searching, jumping, and so on instead of a custom one: bind -Tcopy-mode C-r command-prompt -p'search up' "send -X search-backward '%%'" command-prompt also gets a -1 option to only require on key press, which is needed for jumping. The plan is to get rid of mode keys entirely, so more to come eventually.
179 lines
4.4 KiB
C
179 lines
4.4 KiB
C
/* $OpenBSD$ */
|
|
|
|
/*
|
|
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
#include "tmux.h"
|
|
|
|
/*
|
|
* Prompt for command in client.
|
|
*/
|
|
|
|
static enum cmd_retval cmd_command_prompt_exec(struct cmd *, struct cmd_q *);
|
|
|
|
static int cmd_command_prompt_callback(void *, const char *);
|
|
static void cmd_command_prompt_free(void *);
|
|
|
|
const struct cmd_entry cmd_command_prompt_entry = {
|
|
.name = "command-prompt",
|
|
.alias = NULL,
|
|
|
|
.args = { "1I:p:t:", 0, 1 },
|
|
.usage = "[-1] [-I inputs] [-p prompts] " CMD_TARGET_CLIENT_USAGE " "
|
|
"[template]",
|
|
|
|
.tflag = CMD_CLIENT,
|
|
|
|
.flags = 0,
|
|
.exec = cmd_command_prompt_exec
|
|
};
|
|
|
|
struct cmd_command_prompt_cdata {
|
|
struct client *c;
|
|
char *inputs;
|
|
char *next_input;
|
|
char *next_prompt;
|
|
char *prompts;
|
|
char *template;
|
|
int idx;
|
|
};
|
|
|
|
static enum cmd_retval
|
|
cmd_command_prompt_exec(struct cmd *self, struct cmd_q *cmdq)
|
|
{
|
|
struct args *args = self->args;
|
|
const char *inputs, *prompts;
|
|
struct cmd_command_prompt_cdata *cdata;
|
|
struct client *c = cmdq->state.c;
|
|
char *prompt, *ptr, *input = NULL;
|
|
size_t n;
|
|
int flags;
|
|
|
|
if (c->prompt_string != NULL)
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
cdata = xmalloc(sizeof *cdata);
|
|
cdata->c = c;
|
|
cdata->idx = 1;
|
|
cdata->inputs = NULL;
|
|
cdata->next_input = NULL;
|
|
cdata->next_prompt = NULL;
|
|
cdata->prompts = NULL;
|
|
cdata->template = NULL;
|
|
|
|
if (args->argc != 0)
|
|
cdata->template = xstrdup(args->argv[0]);
|
|
else
|
|
cdata->template = xstrdup("%1");
|
|
|
|
if ((prompts = args_get(args, 'p')) != NULL)
|
|
cdata->prompts = xstrdup(prompts);
|
|
else if (args->argc != 0) {
|
|
n = strcspn(cdata->template, " ,");
|
|
xasprintf(&cdata->prompts, "(%.*s) ", (int) n, cdata->template);
|
|
} else
|
|
cdata->prompts = xstrdup(":");
|
|
|
|
/* Get first prompt. */
|
|
cdata->next_prompt = cdata->prompts;
|
|
ptr = strsep(&cdata->next_prompt, ",");
|
|
if (prompts == NULL)
|
|
prompt = xstrdup(ptr);
|
|
else
|
|
xasprintf(&prompt, "%s ", ptr);
|
|
|
|
/* Get initial prompt input. */
|
|
if ((inputs = args_get(args, 'I')) != NULL) {
|
|
cdata->inputs = xstrdup(inputs);
|
|
cdata->next_input = cdata->inputs;
|
|
input = strsep(&cdata->next_input, ",");
|
|
}
|
|
|
|
flags = 0;
|
|
if (args_has(args, '1'))
|
|
flags |= PROMPT_SINGLE;
|
|
status_prompt_set(c, prompt, input, cmd_command_prompt_callback,
|
|
cmd_command_prompt_free, cdata, flags);
|
|
free(prompt);
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
}
|
|
|
|
static int
|
|
cmd_command_prompt_callback(void *data, const char *s)
|
|
{
|
|
struct cmd_command_prompt_cdata *cdata = data;
|
|
struct client *c = cdata->c;
|
|
struct cmd_list *cmdlist;
|
|
char *cause, *new_template, *prompt, *ptr;
|
|
char *input = NULL;
|
|
|
|
if (s == NULL)
|
|
return (0);
|
|
|
|
new_template = cmd_template_replace(cdata->template, s, cdata->idx);
|
|
free(cdata->template);
|
|
cdata->template = new_template;
|
|
|
|
/*
|
|
* Check if there are more prompts; if so, get its respective input
|
|
* and update the prompt data.
|
|
*/
|
|
if ((ptr = strsep(&cdata->next_prompt, ",")) != NULL) {
|
|
xasprintf(&prompt, "%s ", ptr);
|
|
input = strsep(&cdata->next_input, ",");
|
|
status_prompt_update(c, prompt, input);
|
|
|
|
free(prompt);
|
|
cdata->idx++;
|
|
return (1);
|
|
}
|
|
|
|
if (cmd_string_parse(new_template, &cmdlist, NULL, 0, &cause) != 0) {
|
|
if (cause != NULL) {
|
|
*cause = toupper((u_char) *cause);
|
|
status_message_set(c, "%s", cause);
|
|
free(cause);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
cmdq_run(c->cmdq, cmdlist, NULL);
|
|
cmd_list_free(cmdlist);
|
|
|
|
if (c->prompt_callbackfn != (void *) &cmd_command_prompt_callback)
|
|
return (1);
|
|
return (0);
|
|
}
|
|
|
|
static void
|
|
cmd_command_prompt_free(void *data)
|
|
{
|
|
struct cmd_command_prompt_cdata *cdata = data;
|
|
|
|
free(cdata->inputs);
|
|
free(cdata->prompts);
|
|
free(cdata->template);
|
|
free(cdata);
|
|
}
|