Add gt, gb and gc to goto the first/last/middle displayed line
This commit is contained in:
parent
9999e5698d
commit
1398641d22
|
@ -65,8 +65,12 @@ Basic Movement
|
|||
* _gh_, _alt-H_: select to line begin
|
||||
* _gl_, _alt-L_: select to line end
|
||||
|
||||
* _gg_, _gt_: go to the first line
|
||||
* _gb_: go to the last line
|
||||
* _gg_, _gk_: go to the first line
|
||||
* _gj_: go to the last line
|
||||
|
||||
* _gt_, _gk_: go to the first displayed line
|
||||
* _gc_, _gk_: go to the middle displayed line
|
||||
* _gb_: go to the last displayed line
|
||||
|
||||
* _/_: search (select next match)
|
||||
* _?_: search (extend to next match)
|
||||
|
|
25
src/main.cc
25
src/main.cc
|
@ -88,11 +88,32 @@ void do_go(Context& context)
|
|||
break;
|
||||
}
|
||||
case 'e':
|
||||
{
|
||||
context.push_jump();
|
||||
editor.select(editor.buffer().end()-1, mode);
|
||||
break;
|
||||
}
|
||||
case 't':
|
||||
if (context.has_window())
|
||||
{
|
||||
auto line = context.window().position().line;
|
||||
editor.select(editor.buffer().iterator_at_line_begin(line), mode);
|
||||
}
|
||||
break;
|
||||
case 'b':
|
||||
if (context.has_window())
|
||||
{
|
||||
auto& window = context.window();
|
||||
auto line = window.position().line + window.dimensions().line - 1;
|
||||
editor.select(editor.buffer().iterator_at_line_begin(line), mode);
|
||||
}
|
||||
break;
|
||||
case 'c':
|
||||
if (context.has_window())
|
||||
{
|
||||
auto& window = context.window();
|
||||
auto line = window.position().line + window.dimensions().line / 2;
|
||||
editor.select(editor.buffer().iterator_at_line_begin(line), mode);
|
||||
}
|
||||
break;
|
||||
case 'a':
|
||||
{
|
||||
auto& buffer_manager = BufferManager::instance();
|
||||
|
|
Loading…
Reference in New Issue
Block a user