mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 02:16:31 +00:00
fix(api): nvim_buf_get_offset in a new buffer with zero or one lines
fixes #24930
This commit is contained in:
@@ -3934,6 +3934,11 @@ long ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp, bool no_ff)
|
||||
if (buf->b_ml.ml_usedchunks == -1
|
||||
|| buf->b_ml.ml_chunksize == NULL
|
||||
|| lnum < 0) {
|
||||
// memline is currently empty. Although if it is loaded,
|
||||
// it behaves like there is one empty line.
|
||||
if (!ffdos && buf->b_ml.ml_mfp && (lnum == 1 || lnum == 2)) {
|
||||
return lnum - 1;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user