diff options
author | 2011-08-22 21:32:45 -0400 | |
---|---|---|
committer | 2011-08-22 21:32:45 -0400 | |
commit | 5fc7adac74cfbe659051eb69726ad3101615d339 (patch) | |
tree | 28ecfadb3293105a8b0baaf60358b7077a1ffe25 /modules/textadept/menu.lua | |
parent | 16e3b6371dd39d735073f3d91aadf28568a45822 (diff) | |
download | textadept-5fc7adac74cfbe659051eb69726ad3101615d339.tar.gz textadept-5fc7adac74cfbe659051eb69726ad3101615d339.zip |
Changed some key commands.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 541f18a6..304a4f0d 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -182,8 +182,8 @@ menubar = { { L('Next View'), { gui.goto_view, 1, false } }, { L('Previous View'), { gui.goto_view, -1, false } }, SEPARATOR, - { L('Split View Vertical'), { _view.split, _view } }, { L('Split View Horizontal'), { _view.split, _view, false } }, + { L('Split View Vertical'), { _view.split, _view } }, { L('Unsplit View'), { _view.unsplit, _view } }, { L('Unsplit All Views'), utils.unsplit_all }, { L('Grow View'), { utils.grow, 10 } }, |