Skip to content

Commit 1ae8794

Browse files
committed
Merge branch 'master' of github.com:mrjones2014/smart-splits.nvim
2 parents 9a3df46 + 78f0c74 commit 1ae8794

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

doc/smart-splits.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*smart-splits.txt* Last change: 2024 February 17
1+
*smart-splits.txt* Last change: 2024 March 04
22

33
==============================================================================
44
Table of Contents *smart-splits-table-of-contents*
@@ -277,6 +277,7 @@ Otherwise, here are some recommended mappings.
277277
vim.keymap.set('n', '<C-j>', require('smart-splits').move_cursor_down)
278278
vim.keymap.set('n', '<C-k>', require('smart-splits').move_cursor_up)
279279
vim.keymap.set('n', '<C-l>', require('smart-splits').move_cursor_right)
280+
vim.keymap.set('n', '<C-\\>', require('smart-splits').move_cursor_previous)
280281
-- swapping buffers between windows
281282
vim.keymap.set('n', '<leader><leader>h', require('smart-splits').swap_buf_left)
282283
vim.keymap.set('n', '<leader><leader>j', require('smart-splits').swap_buf_down)
@@ -306,6 +307,7 @@ LUA API *smart-splits-lua-api*
306307
require('smart-splits').move_cursor_down()
307308
require('smart-splits').move_cursor_left()
308309
require('smart-splits').move_cursor_right()
310+
require('smart-splits').move_cursor_previous()
309311
-- Swapping buffers directionally with the window to the specified direction
310312
require('smart-splits').swap_buf_up()
311313
require('smart-splits').swap_buf_down()

0 commit comments

Comments
 (0)