diff options
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index be43159d..9bd6bb8f 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -951,3 +951,8 @@ pub fn completion(cx: &mut Context) { // language server client needs to be accessible via a registry of some sort } } + +// view movements +pub fn next_view(cx: &mut Context) { + cx.editor.tree.focus_next() +} |