1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
use hjkl_buffer::View;
use hjkl_engine::{Host, MarkJump, Settings};
use hjkl_vim::VimEditorExt;
use std::path::PathBuf;
use super::{App, DiskState, STATUS_LINE_HEIGHT};
impl App {
/// Reset slot `idx`'s document to a fresh, empty, unnamed scratch
/// buffer, discarding its content, undo history, and file identity.
/// Used whenever the sole remaining slot must fall back to `[No Name]`
/// instead of being removed (`:bdelete`/`:bwipeout` on the only
/// buffer; aborting a stale-swap recovery prompt on a single-file
/// launch).
///
/// Only replaces the document handle + settings template and the
/// file-identity/disk-state slot fields. Callers remain responsible for
/// anything else that should be discarded first, for LSP
/// detach/diagnostics, and for post-reset bookkeeping (window slot
/// pointers, `reconcile_window_editors` — which rebuilds every window
/// editor showing this slot from scratch, since the content `Arc`
/// changes, discarding their marks/jumplists/undo too — `fs_watch_sync`,
/// the status message).
pub(crate) fn reset_slot_to_scratch(&mut self, idx: usize) {
let old_id = self.slots[idx].buffer_id;
self.syntax.forget(old_id);
// The old buffer is fully discarded here (its content is gone) —
// prune its changelist bank so it doesn't leak (audit B3), mirroring
// `syntax.forget` right above.
self.change_banks.remove(&old_id);
let new_id = self.next_buffer_id;
self.next_buffer_id += 1;
let slot = &mut self.slots[idx];
slot.buffer_id = new_id;
slot.view = View::new();
slot.settings = Settings::default();
slot.filename = None;
slot.dirty = false;
slot.is_new_file = false;
slot.is_untracked = false;
slot.diag_signs.clear();
slot.git_signs.clear();
slot.last_git_dirty_gen = None;
slot.git_repo_present = None; // re-probe on next edit
slot.saved_hash = 0;
slot.saved_len = 0;
slot.disk_mtime = None;
slot.disk_len = None;
slot.disk_state = DiskState::Synced;
slot.snapshot_saved();
}
/// Persist slot `idx`'s last-moved cursor into the cross-session state
/// store.
///
/// Uses `Content.last_cursor` — the last cursor moved on this buffer across
/// ALL windows, not any single view's live cursor. No-op when
/// `restore_cursor` is off, the slot is out of range or a special pane, or
/// the buffer is unnamed (scratch ⇒ no canonical path to key on).
/// Best-effort: any I/O error is swallowed, never surfaced. Debounced by
/// call site — only fires on `:w`, buffer close, and editor exit.
pub(crate) fn persist_slot_cursor(&mut self, idx: usize) {
if !self.config.editor.restore_cursor {
return;
}
if idx >= self.slots.len() || self.slots[idx].is_explorer {
return;
}
let Some(filename) = self.slots[idx].filename.clone() else {
return;
};
let canonical = std::fs::canonicalize(&filename).unwrap_or(filename);
let (row, col) = self.slots[idx].buffer().last_cursor();
let hash = hjkl_app::filestate::content_hash(&self.slots[idx].buffer().as_string());
hjkl_app::filestate::record(&canonical.to_string_lossy(), (row as u32, col as u32), hash);
}
/// Persist slot `idx`'s undo tree to its undofile. Called on the `:w`/`:wq`
/// save-Ok path, the same seam as
/// [`Self::persist_slot_cursor`]: at write time the buffer IS the tree's
/// current node, so the persisted `current` always equals the on-disk file.
///
/// No-op when `undofile` is off, the slot is out of range or a special pane,
/// or the buffer is unnamed (scratch ⇒ no canonical path to key on).
/// Best-effort: any I/O or serialization error is swallowed, never surfaced
/// — a failed undofile write must never fail the save.
pub(crate) fn persist_slot_undofile(&mut self, idx: usize) {
if !self.config.editor.undofile {
return;
}
if idx >= self.slots.len() || self.slots[idx].is_explorer {
return;
}
let Some(filename) = self.slots[idx].filename.clone() else {
return;
};
let canonical = std::fs::canonicalize(&filename).unwrap_or(filename);
let content = self.slots[idx].buffer().as_string();
let content_hash = hjkl_app::filestate::content_hash(&content);
// `disk_len`/`disk_mtime` were refreshed from the file just written on
// the save-Ok path; they're the authoritative identity fields here.
let file_size = self.slots[idx].disk_len.unwrap_or(content.len() as u64);
let file_mtime_unix_ms = self.slots[idx]
.disk_mtime
.and_then(|t| t.duration_since(std::time::UNIX_EPOCH).ok())
.map(|d| d.as_millis() as u64)
.unwrap_or(0);
let (tree, _current_seq) = self.slots[idx].buffer().undo_to_serializable();
let override_dir = self
.config
.editor
.undodir
.as_deref()
.map(std::path::Path::new);
let _ = hjkl_app::undofile::write(
&canonical,
&tree,
content_hash,
file_size,
file_mtime_unix_ms,
override_dir,
);
}
/// Persist every named slot's last-moved cursor in a SINGLE store write
/// (load → upsert all → save once). Called on editor exit so a clean quit
/// remembers where every open buffer's cursor was. No-op when
/// `restore_cursor` is off.
pub(crate) fn persist_all_cursors(&mut self) {
if !self.config.editor.restore_cursor {
return;
}
let mut store = hjkl_app::filestate::FileStateStore::load();
let now = hjkl_app::filestate::now_unix_ms();
let mut any = false;
for idx in 0..self.slots.len() {
if self.slots[idx].is_explorer {
continue;
}
let Some(filename) = self.slots[idx].filename.clone() else {
continue;
};
let canonical = std::fs::canonicalize(&filename).unwrap_or(filename);
let (row, col) = self.slots[idx].buffer().last_cursor();
let hash = hjkl_app::filestate::content_hash(&self.slots[idx].buffer().as_string());
store.upsert(
&canonical.to_string_lossy(),
(row as u32, col as u32),
hash,
now,
);
any = true;
}
if any {
let _ = store.save();
}
}
/// Switch the focused window to display slot `idx` and refresh its
/// viewport spans. Records the previous slot index in `prev_active`
/// for alt-buffer (`<C-^>` / `:b#`).
pub(crate) fn switch_to(&mut self, idx: usize) {
// Special-pane scratch buffers (explorer, bottom qf/loclist dock) are
// never a switch target — they're managed as their own panes, not
// normal buffers.
if self.slot_is_special(idx) {
return;
}
// Never load a normal buffer into a special pane (explorer/cmdline).
// If one is focused (e.g. clicking a buffer-line entry while the
// explorer is focused), redirect to a regular editor window first.
self.focus_editor_window_for_open();
let current_slot = self.focused_slot_idx();
if idx != current_slot {
self.prev_active = Some(current_slot);
}
// Update the synthetic `%` register with the new slot's filename so
// `"%p`, `<C-r>%`, and `:echo @%` reflect the correct path.
let fname = self.slots[idx]
.filename
.as_deref()
.map(|p| p.to_string_lossy().into_owned());
self.registers.lock().unwrap().set_filename(fname);
// Point the focused window at the new slot.
let fw = self.focused_window();
self.windows[fw].as_mut().expect("focused_window open").slot = idx;
// Rebuild the focused window's view editor onto the new slot's Buffer
// (#151 Phase D) so active_editor() below sees the switched buffer.
self.reconcile_window_editors();
if let Ok(size) = crossterm::terminal::size() {
let vp = self.active_editor_mut().host_mut().viewport_mut();
vp.width = size.0;
vp.height = size.1.saturating_sub(STATUS_LINE_HEIGHT);
}
// recompute_and_install runs render_viewport sync (post fully-sync
// refactor) — no need for a preview_render warm-up paint.
self.recompute_and_install();
// Reveal the cursor after a switch: a freshly-built window editor for a
// just-opened file may inherit a restored, off-screen cross-session
// cursor (docs §6b). No-op when the cursor is already within scrolloff.
self.active_editor_mut().ensure_cursor_in_scrolloff();
self.refresh_git_signs_force();
// Follow the new active buffer in the explorer (select its row).
self.explorer_reveal_active();
}
/// `:bnext` — cycle active forward, skipping special-pane slots
/// (explorer, bottom qf/loclist dock). No-op when only one regular slot.
pub(crate) fn buffer_next(&mut self) {
if !self.require_multi_buffer() {
return;
}
let n = self.slots.len();
let current = self.focused_slot_idx();
// Walk forward, skipping special-pane slots. Guard against the
// all-special edge case.
let next = (1..=n).find_map(|i| {
let idx = (current + i) % n;
if !self.slot_is_special(idx) {
Some(idx)
} else {
None
}
});
if let Some(next) = next {
self.switch_to(next);
}
}
/// `:bprev` — cycle active backward, skipping special-pane slots
/// (explorer, bottom qf/loclist dock). No-op when only one regular slot.
pub(crate) fn buffer_prev(&mut self) {
if !self.require_multi_buffer() {
return;
}
let n = self.slots.len();
let current = self.focused_slot_idx();
let prev = (1..=n).find_map(|i| {
let idx = (current + n - i) % n;
if !self.slot_is_special(idx) {
Some(idx)
} else {
None
}
});
if let Some(prev) = prev {
self.switch_to(prev);
}
}
/// `<C-^>` / `:b#` — switch to the previously-active buffer slot.
pub(crate) fn buffer_alt(&mut self) {
if !self.require_multi_buffer() {
return;
}
match self.prev_active {
Some(i) if i < self.slots.len() => {
self.switch_to(i);
}
_ => {
self.bus.warn("no alternate buffer");
}
}
}
/// `:bdelete[!]` — close the active slot. With more than one slot
/// open the slot is removed; on the last slot the buffer is reset
/// to an empty unnamed scratch buffer (vim parity for `:bd` on the
/// only buffer leaving an empty editor instead of quitting).
pub(crate) fn buffer_delete(&mut self, force: bool) {
if !force && self.active().dirty {
self.bus
.error("E89: No write since last change (add ! to override)");
return;
}
let active_slot = self.focused_slot_idx();
// Remember this buffer's cursor before its identity is discarded (§6b).
self.persist_slot_cursor(active_slot);
if self.slots.len() == 1 {
self.lsp_detach_buffer(active_slot);
self.reset_slot_to_scratch(0);
// Keep all windows pointing at slot 0 (the only one).
for win in self.windows.iter_mut().flatten() {
win.slot = 0;
}
// Rebuild window view editors onto the replacement Buffer (#151 Phase D).
self.reconcile_window_editors();
// No file open in slot 0 anymore — stop watching it (#242).
self.fs_watch_sync();
self.bus.info("buffer closed (replaced with [No Name])");
return;
}
self.lsp_detach_buffer(active_slot);
let mut removed = self.slots.remove(active_slot);
self.syntax.forget(removed.buffer_id);
// The buffer is fully closed — prune its changelist bank so it
// doesn't leak (audit B3), mirroring `syntax.forget` above.
self.change_banks.remove(&removed.buffer_id);
// Drop the closed buffer's swap. The owning process stays alive, so the
// orphan scan never reaps it, and the slot is gone so cleanup_swaps_on_exit
// can't either — leaving it makes a later open of the same file surface a
// spurious recovery prompt.
if let Some(p) = removed.swap_path.take() {
let _ = hjkl_app::swap::remove_swap(&p);
}
// Fix up all window slot pointers that reference the removed or shifted slots.
let slot_count = self.slots.len();
for win in self.windows.iter_mut().flatten() {
if win.slot == active_slot {
// Was pointing at the removed slot — redirect to slot before it (or 0).
win.slot = if active_slot > 0 { active_slot - 1 } else { 0 };
} else if win.slot > active_slot {
// Shift down due to the Vec::remove.
win.slot -= 1;
}
// Clamp to valid range just in case.
win.slot = win.slot.min(slot_count.saturating_sub(1));
}
let target = self.focused_slot_idx();
self.switch_to(target);
// Clear alt-buffer pointer after the switch: prev_active may refer
// to a removed or re-indexed slot. Reset unconditionally.
self.prev_active = None;
// The removed slot's file (if any) may no longer be open — resync (#242).
self.fs_watch_sync();
let name = removed
.filename
.as_ref()
.map(|p| p.display().to_string())
.unwrap_or_else(|| "[No Name]".into());
self.bus.info(format!("buffer closed: \"{name}\""));
}
/// Close buffer slot `idx` triggered by a mouse click on the `✕` glyph.
///
/// Switches focus to the target slot first (so `buffer_delete` operates on
/// it), then calls `buffer_delete(false)` — preserving the unsaved-changes
/// guard: a dirty buffer emits E89 rather than silently discarding changes.
pub(crate) fn close_buffer_slot(&mut self, idx: usize) {
if idx != self.focused_slot_idx() {
self.switch_to(idx);
}
self.buffer_delete(false);
}
/// `:bwipeout[!]` — completely remove the active buffer: drop marks,
/// jumplist entries, and all per-buffer cached state. With more than
/// one slot open the slot is removed (same mechanics as `buffer_delete`
/// since the slot — and its editor — vanish entirely). On the last
/// slot a fresh scratch buffer is installed and the old editor's marks
/// and jumplists are explicitly discarded before replacement, ensuring
/// no state leaks into the new session.
pub(crate) fn buffer_wipe(&mut self, force: bool) {
if !force && self.active().dirty {
self.bus
.error("E89: No write since last change (add ! to override)");
return;
}
let active_slot = self.focused_slot_idx();
// Remember this buffer's cursor before its identity is discarded (§6b).
self.persist_slot_cursor(active_slot);
if self.slots.len() == 1 {
// No explicit mark/jumplist wipe needed here (#151 Stage 2b
// removed it as dead weight): `reset_slot_to_scratch` below
// installs a brand-new `View` (fresh `Arc<Mutex<Buffer>>`, so
// the old shared marks map is simply dropped) and
// `reconcile_window_editors` rebuilds every window editor
// showing this slot from scratch (fresh `jump_back`/`jump_fwd`)
// since the content `Arc` changed — old state can't leak in
// either case.
//
// Also clear LSP diagnostics for the wiped buffer.
{
let slot = &mut self.slots[0];
slot.lsp_diags.clear();
slot.diag_signs_lsp.clear();
}
self.lsp_detach_buffer(active_slot);
self.reset_slot_to_scratch(0);
// Keep all windows pointing at slot 0 (the only one).
for win in self.windows.iter_mut().flatten() {
win.slot = 0;
}
// Rebuild window view editors onto the fresh scratch Buffer (#151 Phase D).
self.reconcile_window_editors();
// No file open in slot 0 anymore — stop watching it (#242).
self.fs_watch_sync();
self.bus.info("buffer wiped (replaced with [No Name])");
return;
}
// Multi-slot: removing the slot entirely discards the editor (and all
// its marks/jumps) — same mechanics as buffer_delete.
self.lsp_detach_buffer(active_slot);
let mut removed = self.slots.remove(active_slot);
self.syntax.forget(removed.buffer_id);
// The buffer is fully wiped — prune its changelist bank (audit B3),
// mirroring `syntax.forget` above.
self.change_banks.remove(&removed.buffer_id);
// Drop the closed buffer's swap (see buffer_delete for rationale).
if let Some(p) = removed.swap_path.take() {
let _ = hjkl_app::swap::remove_swap(&p);
}
let slot_count = self.slots.len();
for win in self.windows.iter_mut().flatten() {
if win.slot == active_slot {
win.slot = if active_slot > 0 { active_slot - 1 } else { 0 };
} else if win.slot > active_slot {
win.slot -= 1;
}
win.slot = win.slot.min(slot_count.saturating_sub(1));
}
let target = self.focused_slot_idx();
self.switch_to(target);
self.prev_active = None;
// The removed slot's file (if any) may no longer be open — resync (#242).
self.fs_watch_sync();
let name = removed
.filename
.as_ref()
.map(|p| p.display().to_string())
.unwrap_or_else(|| "[No Name]".into());
self.bus.info(format!("buffer wiped: \"{name}\""));
}
/// Returns `true` when multiple regular (non-special-pane) slots are
/// open; otherwise sets the "only one buffer open" status message and
/// returns `false`.
pub(crate) fn require_multi_buffer(&mut self) -> bool {
let real_count = (0..self.slots.len())
.filter(|&idx| !self.slot_is_special(idx))
.count();
if real_count <= 1 {
self.bus.warn("only one buffer open");
return false;
}
true
}
/// `:ls` / `:buffers` — render the buffer list to a single status line.
/// Marks: `%` active, `+` modified. Special-pane slots (explorer, bottom
/// qf/loclist dock) are excluded.
pub(crate) fn list_buffers(&self) -> String {
let active_slot = self.focused_slot_idx();
let mut parts = Vec::with_capacity(self.slots.len());
for (i, slot) in self.slots.iter().enumerate() {
if self.slot_is_special(i) {
continue;
}
let active = if i == active_slot { '%' } else { ' ' };
let modf = if slot.dirty { '+' } else { ' ' };
let name = slot
.filename
.as_ref()
.map(|p| p.display().to_string())
.unwrap_or_else(|| "[No Name]".into());
parts.push(format!("{}:{active}{modf} \"{name}\"", i + 1));
}
parts.join(" | ")
}
// ── nvim-api helpers ──────────────────────────────────────────────────────
/// View ids of all regular (non-special-pane) slots, as `u64` (nvim wire
/// format).
pub(crate) fn nvim_buffer_ids(&self) -> Vec<u64> {
(0..self.slots.len())
.filter(|&idx| !self.slot_is_special(idx))
.map(|idx| self.slots[idx].buffer_id)
.collect()
}
/// View id of the currently focused slot, as `u64`.
pub(crate) fn nvim_current_buffer_id(&self) -> u64 {
self.active().buffer_id
}
/// Index into `self.slots` whose `buffer_id` matches `id`, or `None`.
pub(crate) fn nvim_slot_index_for_buffer(&self, id: u64) -> Option<usize> {
self.slots.iter().position(|s| s.buffer_id == id)
}
/// Absolute-path filename for the slot with `buffer_id == id`.
/// Returns `""` when the slot has no filename (unnamed scratch buffer).
pub(crate) fn nvim_buffer_name(&self, id: u64) -> Option<String> {
let slot = self.slots.iter().find(|s| s.buffer_id == id)?;
Some(match &slot.filename {
None => String::new(),
Some(p) => {
// Try to canonicalize (resolves symlinks + relative paths);
// fall back to whatever we have if the file doesn't exist yet.
std::fs::canonicalize(p)
.unwrap_or_else(|_| {
if p.is_absolute() {
p.clone()
} else {
std::env::current_dir()
.map(|cwd| cwd.join(p))
.unwrap_or_else(|_| p.clone())
}
})
.display()
.to_string()
}
})
}
/// Set the filename for the slot with `buffer_id == id`.
pub(crate) fn nvim_set_buffer_name(&mut self, id: u64, name: &str) {
if let Some(slot) = self.slots.iter_mut().find(|s| s.buffer_id == id) {
slot.filename = if name.is_empty() {
None
} else {
Some(PathBuf::from(name))
};
}
}
/// Shared reference to the slot with the given buffer id — used by
/// nvim-api handlers that need buffer content for a buffer id that may
/// not be the currently-focused one (#151 Stage 2b: was "the slot-level
/// editor"; slots no longer carry one, so callers now read/write
/// through the `BufferSlot` document-handle accessors directly).
pub(crate) fn nvim_slot(&self, id: u64) -> Option<&super::BufferSlot> {
self.slots.iter().find(|s| s.buffer_id == id)
}
/// Mutable reference to the slot with the given buffer id.
pub(crate) fn nvim_slot_mut(&mut self, id: u64) -> Option<&mut super::BufferSlot> {
self.slots.iter_mut().find(|s| s.buffer_id == id)
}
/// `dirty_gen` of the slot's buffer the last time it was
/// didChange-notified to the LSP (`None` = never sent). Test-only
/// accessor (audit R2, fix 1) — `slots` is private to the `app` module,
/// so nvim-api's own test module needs this to verify a non-focused
/// slot got synced.
#[cfg(test)]
pub(crate) fn nvim_slot_last_lsp_dirty_gen(&self, id: u64) -> Option<u64> {
self.slots
.iter()
.find(|s| s.buffer_id == id)
.and_then(|s| s.last_lsp_dirty_gen)
}
/// First buffer id whose stored filename string contains `name` as a
/// substring, or `None` if no slot matches. Used by `nvim_call_function`
/// `bufnr("name")` semantics.
pub(crate) fn nvim_buffer_id_for_name(&self, name: &str) -> Option<u64> {
self.slots.iter().find_map(|s| {
let fname = s.filename.as_ref()?.to_string_lossy();
if fname.contains(name) {
Some(s.buffer_id)
} else {
None
}
})
}
/// Allocate a fresh empty unnamed buffer slot (nvim_create_buf).
/// The slot is appended but NOT switched to; returns the new buffer id.
pub(crate) fn nvim_create_buffer(&mut self) -> u64 {
use super::{BufferFeatures, BufferSlot, DiskState};
use hjkl_buffer::View;
use std::time::Instant;
let buffer_id = self.next_buffer_id;
self.next_buffer_id += 1;
// No editor to build here (#151 Stage 2b) — the register/marks/
// search/change-bank Arcs and the viewport are wired onto the
// window editor whenever this slot is first shown in a window
// (`reconcile_window_editors` / `make_view_editor`), not here.
let mut slot = BufferSlot {
buffer_id,
is_explorer: false,
features: BufferFeatures::default(),
view: View::new(),
settings: Settings::default(),
filename: None,
dirty: false,
is_new_file: false,
is_untracked: false,
diag_signs: Vec::new(),
diag_signs_lsp: Vec::new(),
lsp_diags: Vec::new(),
last_lsp_dirty_gen: None,
git_signs: Vec::new(),
last_git_dirty_gen: None,
last_git_refresh_at: Instant::now(),
blame: Vec::new(),
last_blame_dirty_gen: None,
last_blame_refresh_at: Instant::now(),
saved_hash: 0,
saved_len: 0,
signature_cache: None,
disk_mtime: None,
disk_len: None,
disk_state: DiskState::Synced,
swap_path: None,
last_swap_dirty_gen: None,
last_fold_dirty_gen: None,
git_repo_present: None,
commit_ctx: None,
};
slot.snapshot_saved();
self.slots.push(slot);
buffer_id
}
/// Allocate a fresh `BufferId` and load `path` into a new slot.
/// Returns the index of the newly pushed slot (does NOT switch).
pub(crate) fn open_new_slot(&mut self, path: PathBuf) -> Result<usize, String> {
let buffer_id = self.next_buffer_id;
self.next_buffer_id += 1;
let slot = super::build_slot(&mut self.syntax, buffer_id, Some(path), &self.config)?;
self.slots.push(slot);
let idx = self.slots.len() - 1;
self.lsp_attach_buffer(idx);
// Event-driven autoreload: watch this file's directory (#242).
self.fs_watch_sync();
Ok(idx)
}
/// Dispatch a buffer-navigation [`crate::keymap_actions::AppAction`].
///
/// Handles variants:
/// - BufferNext / BufferPrev / BufferAlt
/// - BufferCycleH / BufferCycleL (predicate-gated: fall back to viewport motion)
/// - Tabnext / Tabprev (delegated through dispatch_ex)
pub(crate) fn dispatch_buffer_action(
&mut self,
action: crate::keymap_actions::AppAction,
count: usize,
) {
use crate::keymap_actions::AppAction;
match action {
AppAction::Tabnext => {
// `{count}gt` is an ABSOLUTE jump to tab page {count} (vim
// 1-indexes tab pages; `:h gt`), while bare `gt` (no explicit
// count) is RELATIVE — next tab, wrapping from last to first.
// `count` here is already defaulted to 1 by `dispatch_action`,
// so explicit-`1gt` and bare-`gt` are indistinguishable by
// value alone; `g_chord_explicit_count` (captured at
// `BeginPendingAfterG` time, before the default was applied)
// disambiguates them.
if self.g_chord_explicit_count {
let target = count.saturating_sub(1).min(self.tabs.len() - 1);
self.switch_tab(target);
let n = self.active_tab + 1;
let m = self.tabs.len();
self.bus.info(format!("tab {n}/{m}"));
} else {
self.dispatch_ex("tabnext");
}
}
AppAction::Tabprev => {
for _ in 0..count {
self.dispatch_ex("tabprev");
}
}
AppAction::BufferNext => self.buffer_next(),
AppAction::BufferPrev => self.buffer_prev(),
AppAction::BufferAlt => self.buffer_alt(),
AppAction::BufferCycleH => {
if self.slots.len() > 1 {
self.buffer_prev();
} else {
// Single slot: fall back to viewport-top motion.
let n = self.pending_count.take_or(1) as usize;
self.active_editor_mut()
.apply_motion(hjkl_engine::MotionKind::ViewportTop, n);
}
}
AppAction::BufferCycleL => {
if self.slots.len() > 1 {
self.buffer_next();
} else {
// Single slot: fall back to viewport-bottom motion.
let n = self.pending_count.take_or(1) as usize;
self.active_editor_mut()
.apply_motion(hjkl_engine::MotionKind::ViewportBottom, n);
}
}
_ => {}
}
}
/// Handle the result of `Editor::try_goto_mark_line` /
/// `Editor::try_goto_mark_char`. Switches to the correct slot for cross-
/// buffer marks, positions the cursor, and syncs. Emits an error toast
/// when the referenced buffer has been closed.
pub(crate) fn apply_mark_jump(&mut self, jump: MarkJump, linewise: bool) {
match jump {
MarkJump::SameBuffer => {
self.sync_after_engine_mutation();
}
MarkJump::CrossBuffer {
buffer_id,
row,
col,
} => {
let slot_idx = self.slots.iter().position(|s| s.buffer_id == buffer_id);
match slot_idx {
Some(idx) => {
self.switch_to(idx);
if linewise {
self.active_editor_mut().jump_cursor(row, 0);
self.active_editor_mut()
.apply_motion(hjkl_engine::MotionKind::FirstNonBlank, 1);
} else {
self.active_editor_mut().jump_cursor(row, col);
}
self.sync_after_engine_mutation();
}
None => {
self.bus.error(format!(
"E474: mark references a closed buffer (id {buffer_id})"
));
}
}
}
MarkJump::Unset => { /* silent no-op — mark not set */ }
}
}
}