[education/rkward] /: Change default key behavior to navigate completion list without alt key.
Thomas Friedrichsmeier
null at kde.org
Wed Oct 5 16:33:03 BST 2022
Git commit ff1905e24a0ab3b7820e2664a29ce78b282077f6 by Thomas Friedrichsmeier.
Committed on 03/10/2022 at 20:04.
Pushed by tfry into branch 'master'.
Change default key behavior to navigate completion list without alt key.
M +1 -0 ChangeLog
M +1 -1 rkward/settings/rksettingsmodulecommandeditor.h
https://invent.kde.org/education/rkward/commit/ff1905e24a0ab3b7820e2664a29ce78b282077f6
diff --git a/ChangeLog b/ChangeLog
index e94765f6..0073b4be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,4 @@
+- Changed default behavior (new installations, only): Up/down without alt navigate completion items if visible in console/editor
- Fixed: Backend failed to start when installed in a path with spaces on Windows volumes without 8.3 support
- Fixed: Trying to restart backend could cause a hang, on Windows
- Fixed: In corner cases, cancelling commands could lead to a lockup
diff --git a/rkward/settings/rksettingsmodulecommandeditor.h b/rkward/settings/rksettingsmodulecommandeditor.h
index 629d1761..a114c569 100644
--- a/rkward/settings/rksettingsmodulecommandeditor.h
+++ b/rkward/settings/rksettingsmodulecommandeditor.h
@@ -56,7 +56,7 @@ friend class RKSettingsModuleConsole;
RKConfigValue<bool> auto_completion_cursor_activated {"Auto completion on cursor navigation", false};
RKConfigValue<bool> tabkey_invokes_completion {"Tabkey invokes completion", false};
RKConfigValue<bool> completion_type_enabled[N_COMPLETION_CATEGORIES] {{"Calltips", true}, {"Argument completion", true}, {"Object completion", true}, {"Filename completion", true}, {"Auto word completion", true}, {"mouseover", true}};
- RKConfigValue<bool> cursor_navigates_completions {"Cursor navigate completions", false};
+ RKConfigValue<bool> cursor_navigates_completions {"Cursor navigate completions", true};
RKConfigValue<int> completion_options {"Completion option flags", (int) RObject::IncludeEnvirIfMasked};
RKConfigGroup dummyoptions = RKConfigGroup(0, N_COMPLETION_CATEGORIES, completion_type_enabled);
RKConfigValue<bool> completion_all_filetypes {"Completion all filetypes", true};
More information about the rkward-tracker
mailing list