]> git.mdlowis.com Git - projs/tide.git/commitdiff
Updated Ctrl+Shift+A shortcut to set an implicit mark
authorMichael D. Lowis <mike.lowis@gentex.com>
Thu, 15 Jun 2017 17:28:58 +0000 (13:28 -0400)
committerMichael D. Lowis <mike.lowis@gentex.com>
Thu, 15 Jun 2017 17:28:58 +0000 (13:28 -0400)
inc/shortcuts.h

index 9835c610c0bc884f86240ad1ab666247e2efc554..fe4c903d0ec1a415951a13034e18c6545fd82827 100644 (file)
@@ -6,8 +6,8 @@ static void select_line(void) {
 
 static void select_all(void) {
     View* view = win_view(FOCUSED);
+    view_jumpto(view, false, buf_end(&(view->buffer)));
     view->selection.beg = 0;
-    view->selection.end = buf_end(&(view->buffer));
 }
 
 static void join_lines(void) {