|
1 |
| -*smart-splits.txt* Last change: 2024 February 17 |
| 1 | +*smart-splits.txt* Last change: 2024 March 04 |
2 | 2 |
|
3 | 3 | ==============================================================================
|
4 | 4 | Table of Contents *smart-splits-table-of-contents*
|
@@ -277,6 +277,7 @@ Otherwise, here are some recommended mappings.
|
277 | 277 | vim.keymap.set('n', '<C-j>', require('smart-splits').move_cursor_down)
|
278 | 278 | vim.keymap.set('n', '<C-k>', require('smart-splits').move_cursor_up)
|
279 | 279 | vim.keymap.set('n', '<C-l>', require('smart-splits').move_cursor_right)
|
| 280 | + vim.keymap.set('n', '<C-\\>', require('smart-splits').move_cursor_previous) |
280 | 281 | -- swapping buffers between windows
|
281 | 282 | vim.keymap.set('n', '<leader><leader>h', require('smart-splits').swap_buf_left)
|
282 | 283 | vim.keymap.set('n', '<leader><leader>j', require('smart-splits').swap_buf_down)
|
@@ -306,6 +307,7 @@ LUA API *smart-splits-lua-api*
|
306 | 307 | require('smart-splits').move_cursor_down()
|
307 | 308 | require('smart-splits').move_cursor_left()
|
308 | 309 | require('smart-splits').move_cursor_right()
|
| 310 | + require('smart-splits').move_cursor_previous() |
309 | 311 | -- Swapping buffers directionally with the window to the specified direction
|
310 | 312 | require('smart-splits').swap_buf_up()
|
311 | 313 | require('smart-splits').swap_buf_down()
|
|
0 commit comments