Home
last modified time | relevance | path

Searched refs:KeyBindings (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/dports/x11-toolkits/gnustep-gui/libs-gui-gui-0_28_0/KeyBindings/
H A DGNUmakefile28 $(GNUSTEP_LIBRARY)/KeyBindings:
31 after-install:: $(GNUSTEP_LIBRARY)/KeyBindings
33 $(GNUSTEP_LIBRARY)/KeyBindings/
36 rm -f $(GNUSTEP_LIBRARY)/KeyBindings/DefaultKeyBindings.dict
37 -rmdir $(GNUSTEP_LIBRARY)/KeyBindings
/dports/devel/py-prompt-toolkit/prompt_toolkit-3.0.23/prompt_toolkit/key_binding/bindings/
H A Dopen_in_editor.py6 from ..key_bindings import KeyBindings, KeyBindingsBase, merge_key_bindings
28 def load_emacs_open_in_editor_bindings() -> KeyBindings:
32 key_bindings = KeyBindings()
41 def load_vi_open_in_editor_bindings() -> KeyBindings:
45 key_bindings = KeyBindings()
H A Dcpr.py4 from ..key_bindings import KeyBindings
13 def load_cpr_bindings() -> KeyBindings:
14 key_bindings = KeyBindings()
H A Dpage_navigation.py8 KeyBindings,
54 key_bindings = KeyBindings()
70 key_bindings = KeyBindings()
H A Dauto_suggest.py8 from prompt_toolkit.key_binding.key_bindings import KeyBindings
18 def load_auto_suggest_bindings() -> KeyBindings:
26 key_bindings = KeyBindings()
/dports/audio/ncmpc/ncmpc-0.41/src/
H A DBindings.cxx29 KeyBindings::GetFirstKeyName(Command command) const noexcept in GetFirstKeyName()
38 KeyBindings::GetKeyNames(Command command) const noexcept in GetKeyNames()
52 KeyBindings::FindKey(int key) const noexcept in FindKey()
67 KeyBindings::Check(char *buf, size_t bufsize) const noexcept in Check()
130 KeyBindings::WriteToFile(FILE *f, int flags) const noexcept in WriteToFile()
H A DGlobalBindings.hxx25 struct KeyBindings;
28 KeyBindings &
/dports/shells/ion/liner-3f3d1d4e6058067e9d03a9b1510d8f2edac073c7/src/
H A Dcontext.rs44 pub enum KeyBindings { enum
52 pub key_bindings: KeyBindings,
67 key_bindings: KeyBindings::Emacs, in new()
116 KeyBindings::Emacs => Self::handle_keys(keymap::Emacs::new(), ed, handler), in read_line_with_init_buffer()
117 KeyBindings::Vi => Self::handle_keys(keymap::Vi::new(), ed, handler), in read_line_with_init_buffer()
/dports/devel/py-prompt-toolkit2/prompt_toolkit-2.0.10/prompt_toolkit/key_binding/bindings/
H A Dopen_in_editor.py12 from ..key_bindings import KeyBindings, merge_key_bindings
36 key_bindings = KeyBindings()
49 key_bindings = KeyBindings()
H A Dpage_navigation.py10 KeyBindings,
51 key_bindings = KeyBindings()
67 key_bindings = KeyBindings()
H A Dcpr.py5 from ..key_bindings import KeyBindings
13 key_bindings = KeyBindings()
/dports/devel/py-lineedit/lineedit-0.1.6/lineedit/deps/prompt_toolkit/key_binding/bindings/
H A Dopen_in_editor.py12 from ..key_bindings import KeyBindings, merge_key_bindings
36 key_bindings = KeyBindings()
49 key_bindings = KeyBindings()
H A Dpage_navigation.py10 KeyBindings,
51 key_bindings = KeyBindings()
67 key_bindings = KeyBindings()
/dports/audio/gmusicbrowser/gmusicbrowser-1.1.15/layouts/
H A Dsearch.layout8 KeyBindings = Escape CloseWindow
17 KeyBindings = Escape CloseWindow
26 KeyBindings = Escape CloseWindow
/dports/devel/py-prompt-toolkit/prompt_toolkit-3.0.23/tests/
H A Dtest_key_binding.py6 from prompt_toolkit.key_binding.key_bindings import KeyBindings
43 bindings = KeyBindings()
63 bindings = KeyBindings()
71 bindings = KeyBindings()
151 registry = KeyBindings()
/dports/devel/py-prompt-toolkit2/prompt_toolkit-2.0.10/tests/
H A Dtest_key_binding.py7 from prompt_toolkit.key_binding.key_bindings import KeyBindings
44 bindings = KeyBindings()
66 bindings = KeyBindings()
74 bindings = KeyBindings()
153 registry = KeyBindings()
/dports/shells/ion/ion-a8872014dbce730ccd00aaa722397dc394a52bf4/src/
H A Dmain.rs4 use liner::KeyBindings;
27 struct KeyBindingsWrapper(KeyBindings);
35 "vi" => Ok(KeyBindingsWrapper(KeyBindings::Vi)), in from_str()
36 "emacs" => Ok(KeyBindingsWrapper(KeyBindings::Emacs)), in from_str()
105 Some("vi") => Some(KeyBindingsWrapper(KeyBindings::Vi)), in parse_args()
106 Some("emacs") => Some(KeyBindingsWrapper(KeyBindings::Emacs)), in parse_args()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/share/extensions/tests/
H A Dtest_jessyink_keybindings.py2 from jessyink_key_bindings import KeyBindings
6 effect_class = KeyBindings
/dports/devel/py-prompt-toolkit2/prompt_toolkit-2.0.10/prompt_toolkit/widgets/
H A Ddialogs.py12 from prompt_toolkit.key_binding.key_bindings import KeyBindings
46 buttons_kb = KeyBindings()
68 kb = KeyBindings()
/dports/devel/py-lineedit/lineedit-0.1.6/lineedit/deps/prompt_toolkit/widgets/
H A Ddialogs.py12 from prompt_toolkit.key_binding.key_bindings import KeyBindings
46 buttons_kb = KeyBindings()
68 kb = KeyBindings()
/dports/mail/aerc/aerc-0.4.0/config/
H A Dconfig.go88 Global *KeyBindings
89 AccountWizard *KeyBindings
90 Compose *KeyBindings
91 ComposeEditor *KeyBindings
92 ComposeReview *KeyBindings
93 MessageList *KeyBindings
94 MessageView *KeyBindings
95 Terminal *KeyBindings
530 groups := map[string]**KeyBindings{
/dports/devel/py-prompt-toolkit/prompt_toolkit-3.0.23/examples/prompts/
H A Dget-password-with-toggle-display-shortcut.py8 from prompt_toolkit.key_binding import KeyBindings
13 bindings = KeyBindings()
/dports/devel/py-prompt-toolkit/prompt_toolkit-3.0.23/prompt_toolkit/widgets/
H A Ddialogs.py9 from prompt_toolkit.key_binding.key_bindings import KeyBindings
55 buttons_kb = KeyBindings()
84 kb = KeyBindings()
/dports/devel/py-prompt-toolkit2/prompt_toolkit-2.0.10/examples/prompts/
H A Dget-password-with-toggle-display-shortcut.py10 from prompt_toolkit.key_binding import KeyBindings
15 bindings = KeyBindings()
/dports/chinese/librime/librime-1.7.3/src/rime/gear/
H A Dkey_binder.h17 class KeyBindings; variable
29 the<KeyBindings> key_bindings_;

12345678910>>...15