diff options
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 82c72cfa..e26a2ec4 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -149,8 +149,8 @@ menubar = { { L('Show Style'), utils.show_style }, }, { title = L('Buffer'), - { L('Next Buffer'), { _view.goto_buffer, _view, 1, false } }, - { L('Previous Buffer'), { _view.goto_buffer, _view, -1, false } }, + { L('Next Buffer'), { _view.goto_buffer, _view, 1, true } }, + { L('Previous Buffer'), { _view.goto_buffer, _view, -1, true } }, { L('Switch to Buffer...'), gui.switch_buffer }, SEPARATOR, { title = L('Indentation'), @@ -179,11 +179,11 @@ menubar = { { L('Refresh Syntax Highlighting'), { _buffer.colourise, _buffer, 0, -1 } }, }, { title = L('View'), - { L('Next View'), { gui.goto_view, 1, false } }, - { L('Previous View'), { gui.goto_view, -1, false } }, + { L('Next View'), { gui.goto_view, 1, true } }, + { L('Previous View'), { gui.goto_view, -1, true } }, SEPARATOR, - { L('Split View Horizontal'), { _view.split, _view, false } }, - { L('Split View Vertical'), { _view.split, _view } }, + { L('Split View Horizontal'), { _view.split, _view } }, + { L('Split View Vertical'), { _view.split, _view, true } }, { L('Unsplit View'), { _view.unsplit, _view } }, { L('Unsplit All Views'), utils.unsplit_all }, { L('Grow View'), { utils.grow, 10 } }, |