mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #11577 from janlazo/vim-8.2.0019
vim-patch:8.2.{19,24}
This commit is contained in:
commit
416de695f9
@ -4138,6 +4138,8 @@ getbufinfo([{dict}])
|
|||||||
hidden TRUE if the buffer is hidden.
|
hidden TRUE if the buffer is hidden.
|
||||||
listed TRUE if the buffer is listed.
|
listed TRUE if the buffer is listed.
|
||||||
lnum current line number in buffer.
|
lnum current line number in buffer.
|
||||||
|
linecount number of lines in the buffer (only
|
||||||
|
valid when loaded)
|
||||||
loaded TRUE if the buffer is loaded.
|
loaded TRUE if the buffer is loaded.
|
||||||
name full path to the file in the buffer.
|
name full path to the file in the buffer.
|
||||||
signs list of signs placed in the buffer.
|
signs list of signs placed in the buffer.
|
||||||
|
@ -1299,6 +1299,9 @@ au BufNewFile,BufRead *.reg
|
|||||||
" Renderman Interface Bytestream
|
" Renderman Interface Bytestream
|
||||||
au BufNewFile,BufRead *.rib setf rib
|
au BufNewFile,BufRead *.rib setf rib
|
||||||
|
|
||||||
|
" Rego Policy Language
|
||||||
|
au BufNewFile,BufRead *.rego setf rego
|
||||||
|
|
||||||
" Rexx
|
" Rexx
|
||||||
au BufNewFile,BufRead *.rex,*.orx,*.rxo,*.rxj,*.jrexx,*.rexxj,*.rexx,*.testGroup,*.testUnit setf rexx
|
au BufNewFile,BufRead *.rex,*.orx,*.rxo,*.rxj,*.jrexx,*.rexxj,*.rexx,*.testGroup,*.testUnit setf rexx
|
||||||
|
|
||||||
|
@ -9922,6 +9922,7 @@ static dict_T *get_buffer_info(buf_T *buf)
|
|||||||
buf->b_ffname != NULL ? (const char *)buf->b_ffname : "");
|
buf->b_ffname != NULL ? (const char *)buf->b_ffname : "");
|
||||||
tv_dict_add_nr(dict, S_LEN("lnum"),
|
tv_dict_add_nr(dict, S_LEN("lnum"),
|
||||||
buf == curbuf ? curwin->w_cursor.lnum : buflist_findlnum(buf));
|
buf == curbuf ? curwin->w_cursor.lnum : buflist_findlnum(buf));
|
||||||
|
tv_dict_add_nr(dict, S_LEN("linecount"), buf->b_ml.ml_line_count);
|
||||||
tv_dict_add_nr(dict, S_LEN("loaded"), buf->b_ml.ml_mfp != NULL);
|
tv_dict_add_nr(dict, S_LEN("loaded"), buf->b_ml.ml_mfp != NULL);
|
||||||
tv_dict_add_nr(dict, S_LEN("listed"), buf->b_p_bl);
|
tv_dict_add_nr(dict, S_LEN("listed"), buf->b_p_bl);
|
||||||
tv_dict_add_nr(dict, S_LEN("changed"), bufIsChanged(buf));
|
tv_dict_add_nr(dict, S_LEN("changed"), bufIsChanged(buf));
|
||||||
|
@ -139,3 +139,13 @@ function Test_get_win_options()
|
|||||||
set foldlevel=0
|
set foldlevel=0
|
||||||
endif
|
endif
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func Test_getbufinfo_lines()
|
||||||
|
new Xfoo
|
||||||
|
call setline(1, ['a', 'bc', 'd'])
|
||||||
|
let bn = bufnr('%')
|
||||||
|
hide
|
||||||
|
call assert_equal(3, getbufinfo(bn)[0]["linecount"])
|
||||||
|
edit Xfoo
|
||||||
|
bw!
|
||||||
|
endfunc
|
||||||
|
@ -364,6 +364,7 @@ let s:filename_checks = {
|
|||||||
\ 'rcs': ['file,v'],
|
\ 'rcs': ['file,v'],
|
||||||
\ 'readline': ['.inputrc', 'inputrc'],
|
\ 'readline': ['.inputrc', 'inputrc'],
|
||||||
\ 'remind': ['.reminders', 'file.remind', 'file.rem'],
|
\ 'remind': ['.reminders', 'file.remind', 'file.rem'],
|
||||||
|
\ 'rego': ['file.rego'],
|
||||||
\ 'resolv': ['resolv.conf'],
|
\ 'resolv': ['resolv.conf'],
|
||||||
\ 'reva': ['file.frt'],
|
\ 'reva': ['file.frt'],
|
||||||
\ 'rexx': ['file.rex', 'file.orx', 'file.rxo', 'file.rxj', 'file.jrexx', 'file.rexxj', 'file.rexx', 'file.testGroup', 'file.testUnit'],
|
\ 'rexx': ['file.rex', 'file.orx', 'file.rxo', 'file.rxj', 'file.jrexx', 'file.rexxj', 'file.rexx', 'file.testGroup', 'file.testUnit'],
|
||||||
|
Loading…
Reference in New Issue
Block a user