diff options
| author | Yonatan Goldschmidt | 2019-12-14 23:42:03 +0200 |
|---|---|---|
| committer | Damien George | 2020-01-12 13:09:27 +1100 |
| commit | 853aaa06f24c98191a44a38eedd4ec2a0e63d3eb (patch) | |
| tree | 8ea2c47102ae540789b481f665518d898f79c61b /tests/feature_check | |
| parent | dce590c29dbefea253f4034c4bde3508f205364e (diff) | |
lib/mp-readline: Add word-based move/delete EMACS key sequences.
This commit adds backward-word, backward-kill-word, forward-word,
forward-kill-word sequences for the REPL, with bindings to Alt+F, Alt+B,
Alt+D and Alt+Backspace respectively. It is disabled by default and can be
enabled via MICROPY_REPL_EMACS_WORDS_MOVE.
Further enabling MICROPY_REPL_EMACS_EXTRA_WORDS_MOVE adds extra bindings
for these new sequences: Ctrl+Right, Ctrl+Left and Ctrl+W.
The features are enabled on unix micropython-coverage and micropython-dev.
Diffstat (limited to 'tests/feature_check')
| -rw-r--r-- | tests/feature_check/repl_words_move_check.py | 4 | ||||
| -rw-r--r-- | tests/feature_check/repl_words_move_check.py.exp | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/tests/feature_check/repl_words_move_check.py b/tests/feature_check/repl_words_move_check.py new file mode 100644 index 000000000..e74615e98 --- /dev/null +++ b/tests/feature_check/repl_words_move_check.py @@ -0,0 +1,4 @@ +# just check if ctrl+w is supported, because it makes sure that +# both MICROPY_REPL_EMACS_WORDS_MOVE and MICROPY_REPL_EXTRA_WORDS_MOVE are enabled. +t = 1231 +t == 1 diff --git a/tests/feature_check/repl_words_move_check.py.exp b/tests/feature_check/repl_words_move_check.py.exp new file mode 100644 index 000000000..82a4e28ee --- /dev/null +++ b/tests/feature_check/repl_words_move_check.py.exp @@ -0,0 +1,7 @@ +MicroPython \.\+ version +Use \.\+ +>>> # Check for emacs keys in REPL +>>> t = \.\+ +>>> t == 2 +True +>>> |
