shell: meta-keys handle condition update
Meta keys are active when they are enabled and when shell echo is set to on. Updated meta keys description in shell's Kconfig file. Signed-off-by: Jakub Rzeszutko <jakub.rzeszutko@nordicsemi.no>
This commit is contained in:
parent
9e63aead54
commit
e7b55a6eb5
3 changed files with 12 additions and 6 deletions
|
@ -88,8 +88,9 @@ config SHELL_METAKEYS
|
|||
bool "Enable metakeys"
|
||||
default y
|
||||
help
|
||||
Enables shell metakeys: Home, End, ctrl+a, ctrl+c, ctrl+e, ctrl+l,
|
||||
ctrl+u, ctrl+w
|
||||
Enables shell meta keys: Ctrl+a, Ctrl+b, Ctrl+c, Ctrl+d, Ctrl+e,
|
||||
Ctrl+f, Ctrl+k, Ctrl+l, Ctrl+u, Ctrl+w, Alt+b, Alt+f
|
||||
Meta keys will not be active when shell echo is set to off.
|
||||
|
||||
config SHELL_HELP
|
||||
bool "Enable help message"
|
||||
|
|
|
@ -949,7 +949,7 @@ static void state_collect(const struct shell *shell)
|
|||
if (isprint((int) data)) {
|
||||
flag_history_exit_set(shell, true);
|
||||
shell_op_char_insert(shell, data);
|
||||
} else {
|
||||
} else if (flag_echo_get(shell)) {
|
||||
ctrl_metakeys_handle(shell, data);
|
||||
}
|
||||
break;
|
||||
|
@ -960,11 +960,11 @@ static void state_collect(const struct shell *shell)
|
|||
if (data == '[') {
|
||||
receive_state_change(shell,
|
||||
SHELL_RECEIVE_ESC_SEQ);
|
||||
} else {
|
||||
break;
|
||||
} else if (flag_echo_get(shell)) {
|
||||
alt_metakeys_handle(shell, data);
|
||||
receive_state_change(shell,
|
||||
SHELL_RECEIVE_DEFAULT);
|
||||
}
|
||||
receive_state_change(shell, SHELL_RECEIVE_DEFAULT);
|
||||
break;
|
||||
|
||||
case SHELL_RECEIVE_ESC_SEQ:
|
||||
|
|
|
@ -261,6 +261,11 @@ static void data_insert(const struct shell *shell, const char *data, u16_t len)
|
|||
void char_replace(const struct shell *shell, char data)
|
||||
{
|
||||
shell->ctx->cmd_buff[shell->ctx->cmd_buff_pos++] = data;
|
||||
|
||||
if (!flag_echo_get(shell)) {
|
||||
return;
|
||||
}
|
||||
|
||||
shell_raw_fprintf(shell->fprintf_ctx, "%c", data);
|
||||
if (shell_cursor_in_empty_line(shell)) {
|
||||
cursor_next_line_move(shell);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue