Wow that list of commits is brutal. Libre Office is dead. Just another corporate take over of an open source project.
github.com##.code-navigation-cursor
github.com###symbols-pane:upward(1)
Unfortunately searching is still broken. This greasemonkey script blocks the capture of keyboard shortcuts like / ctrl space: keycodes = [191, 17, 32]
document.addEventListener('keydown', function(e) {
if (keycodes.indexOf(e.keyCode) != -1)
{
e.cancelBubble = true;
e.stopImmediatePropagation();
}
return false;
});