We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6cfca1 commit 4781c30Copy full SHA for 4781c30
src/main.rs
@@ -196,6 +196,7 @@ impl Bk<'_> {
196
}
197
198
view.on_resize(self);
199
+ // XXX marks aren't updated
200
201
202
src/view.rs
@@ -143,9 +143,11 @@ impl View for Nav {
143
match kc {
144
Esc | Tab | Left | Char('h') | Char('q') => {
145
bk.jump_reset();
146
+ bk.cursor = 0;
147
bk.view = Some(&Page);
148
149
Enter | Right | Char('l') => {
150
151
bk.line = 0;
152
153
0 commit comments