We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am following the docs to customize my key bindings. However, the following code in my startup.jl (taken from the docs)
startup.jl
import REPL import REPL.LineEdit const mykeys = Dict{Any,Any}( "\\Mt" => (s,o...)->(LineEdit.edit_delete_prev_word(s)) ) function customize_keys(repl) repl.interface = REPL.setup_interface(repl; extra_repl_keymap = mykeys) end atreplinit(customize_keys)
Gives the assertion
AssertionError: c == '-'
when I start julia and the key Alt+t does not work. Changing \\Mt to another key like ^t seems to work on the other hand.
Alt+t
\\Mt
^t
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I am following the docs to customize my key bindings.
However, the following code in my
startup.jl
(taken from the docs)Gives the assertion
when I start julia and the key
Alt+t
does not work. Changing\\Mt
to another key like^t
seems to work on the other hand.The text was updated successfully, but these errors were encountered: