blob: 2e527b41b407297ba97ab98f9aae73b1cee39d30 [file] [log] [blame]
# Copyright 2021 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
# pylint: skip-file
"""Console key bindings."""
import logging
from prompt_toolkit.filters import (
Condition,
has_focus,
)
from prompt_toolkit.key_binding import KeyBindings
from prompt_toolkit.key_binding.bindings.focus import focus_next, focus_previous
__all__ = ('create_key_bindings', )
_LOG = logging.getLogger(__package__)
def create_key_bindings(console_app):
"""Create custom key bindings.
This starts with the key bindings, defined by `prompt-toolkit`, but adds the
ones which are specific for the console_app. A console_app instance
reference is passed in so key bind functions can access it.
"""
bindings = KeyBindings()
@bindings.add('f1')
def show_help(event):
"""Toggle help window."""
console_app.toggle_help()
@bindings.add('q', filter=Condition(lambda: console_app.show_help_window))
def close_help_window(event):
"""Hide help window."""
console_app.toggle_help()
@bindings.add('f2')
def toggle_vertical_split(event):
"""Toggle horizontal and vertical window splitting."""
console_app.toggle_vertical_split()
@bindings.add('c-w')
@bindings.add('c-q')
def exit_(event):
"""Quit the console application."""
# TODO(tonymd): Cancel any existing user repl or plugin tasks before
# exiting.
event.app.exit()
@bindings.add('s-tab')
@bindings.add('c-right')
@bindings.add('c-down')
def app_focus_next(event):
"""Move focus to the next widget."""
focus_next(event)
@bindings.add('c-left')
@bindings.add('c-up')
def app_focus_previous(event):
"""Move focus to the previous widget."""
focus_previous(event)
# Bindings for when the ReplPane input field is in focus.
@bindings.add('c-c', filter=has_focus(console_app.pw_ptpython_repl))
def handle_ctrl_c(event):
"""Reset the python repl on Ctrl-c"""
console_app.repl_pane.ctrl_c()
@bindings.add('c-d', filter=has_focus(console_app.pw_ptpython_repl))
def handle_ctrl_d(event):
"""Do nothing on ctrl-d."""
# TODO(tonymd): Allow ctrl-d to quit the whole app with confirmation
# like ipython.
pass
return bindings