From 7a8024ae3dbe0c2c52b6536fb73dd33071e00637 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 10 Feb 2020 03:10:08 -0500 Subject: Always increase unreadLines So that if you switch to a window and some new activity happens before you press M-u, it'll still jump to the right place. --- ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui.c b/ui.c index d35c02d..1d1e46c 100644 --- a/ui.c +++ b/ui.c @@ -497,7 +497,7 @@ void uiWrite(size_t id, enum Heat heat, const time_t *src, const char *str) { statusUpdate(); } lines += wordWrap(window->pad, str); - if (window->mark) window->unreadLines += lines; + window->unreadLines += lines; if (window->scroll) windowScroll(window, lines); if (heat > Warm) beep(); } -- cgit 1.4.0 master dontfiles
summary refs log tree commit diff
path: root/bundle/jellybeans.vim (unfollow)
Commit message (Expand)Author
2012-02-05Update jellybeansJune McEnroe
2012-02-02Update itchy.vimJune McEnroe
2012-02-02Add mapping to toggle relative/absolute numberingJune McEnroe
2012-02-02Add itchy.vimJune McEnroe
2012-02-01Revert "Add ShowMarks plugin"June McEnroe
2012-02-01Add ShowMarks pluginJune McEnroe
2012-02-01Update Vim-Tomorrow-ThemeJune McEnroe
2012-02-01Add vim-markdownJune McEnroe
2012-02-01Add tabular.vimJune McEnroe
2012-02-01Update Vim-Tomorrow-ThemeJune McEnroe
2012-01-30Disable menu bar in GVimJune McEnroe
2012-01-30Set shiftwidth to 4 for LuaJune McEnroe
2012-01-29Don't show Syntastic errors automaticallyJune McEnroe
2012-01-28Update to Quicktask 1.1June McEnroe
2012-01-22Use space-test branch of quicktaskJune McEnroe
2012-01-22Enable syntax-based foldingJune McEnroe
2012-01-22Update quicktaskJune McEnroe
2012-01-22Revert "Add AutoClose"June McEnroe
2012-01-22Revert "Disable powerline for now"June McEnroe
2012-01-22Revert "Add VCS repo directories to wildignore"June McEnroe
2012-01-22Disable powerline for nowJune McEnroe
2012-01-22Update some pluginsJune McEnroe
2012-01-22Add VCS repo directories to wildignoreJune McEnroe
2012-01-22Map ,e and ,b to CtrlP file and buffer respectivelyJune McEnroe
2012-01-22Add vim-spaceJune McEnroe
2012-01-22Add AutoCloseJune McEnroe
2012-01-22Add binding for GundoJune McEnroe
2012-01-22Add GundoJune McEnroe
2012-01-22Add Jellybeans colorschemeJune McEnroe
2012-01-22Add syntasticJune McEnroe
2012-01-21Add PowerlineJune McEnroe
2012-01-21Add quicktaskJune McEnroe
2012-01-15Moved comments out of mapsJune McEnroe
2012-01-14Disable scrollbarsJune McEnroe