mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.1.1870: using :pedit from a help file sets help filetype
Problem: Using :pedit from a help file sets the preview window to help filetype. (Wang Shidong) Solution: Do not set "keep_help_flag". (closes #3536)
This commit is contained in:
parent
4ad62155a1
commit
026587b35c
@ -8612,16 +8612,16 @@ ex_pedit(exarg_T *eap)
|
|||||||
{
|
{
|
||||||
win_T *curwin_save = curwin;
|
win_T *curwin_save = curwin;
|
||||||
|
|
||||||
|
// Open the preview window or popup and make it the current window.
|
||||||
g_do_tagpreview = p_pvh;
|
g_do_tagpreview = p_pvh;
|
||||||
prepare_tagpreview(TRUE);
|
prepare_tagpreview(TRUE);
|
||||||
|
|
||||||
keep_help_flag = bt_help(curwin_save->w_buffer);
|
// Edit the file.
|
||||||
do_exedit(eap, NULL);
|
do_exedit(eap, NULL);
|
||||||
keep_help_flag = FALSE;
|
|
||||||
|
|
||||||
if (curwin != curwin_save && win_valid(curwin_save))
|
if (curwin != curwin_save && win_valid(curwin_save))
|
||||||
{
|
{
|
||||||
/* Return cursor to where we were */
|
// Return cursor to where we were
|
||||||
validate_cursor();
|
validate_cursor();
|
||||||
redraw_later(VALID);
|
redraw_later(VALID);
|
||||||
win_enter(curwin_save, TRUE);
|
win_enter(curwin_save, TRUE);
|
||||||
|
@ -190,6 +190,21 @@ func Test_window_preview()
|
|||||||
call assert_fails('wincmd P', 'E441:')
|
call assert_fails('wincmd P', 'E441:')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func Test_window_preview_from_help()
|
||||||
|
filetype on
|
||||||
|
call writefile(['/* some C code */'], 'Xpreview.c')
|
||||||
|
help
|
||||||
|
pedit Xpreview.c
|
||||||
|
wincmd P
|
||||||
|
call assert_equal(1, &previewwindow)
|
||||||
|
call assert_equal('c', &filetype)
|
||||||
|
wincmd z
|
||||||
|
|
||||||
|
filetype off
|
||||||
|
close
|
||||||
|
call delete('Xpreview.c')
|
||||||
|
endfunc
|
||||||
|
|
||||||
func Test_window_exchange()
|
func Test_window_exchange()
|
||||||
e Xa
|
e Xa
|
||||||
|
|
||||||
@ -582,6 +597,7 @@ func Test_winrestcmd()
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Fun_RenewFile()
|
func Fun_RenewFile()
|
||||||
|
" Need to wait a bit for the timestamp to be older.
|
||||||
sleep 2
|
sleep 2
|
||||||
silent execute '!echo "1" > tmp.txt'
|
silent execute '!echo "1" > tmp.txt'
|
||||||
sp
|
sp
|
||||||
@ -599,7 +615,6 @@ func Test_window_prevwin()
|
|||||||
call writefile(['2'], 'tmp.txt')
|
call writefile(['2'], 'tmp.txt')
|
||||||
new tmp.txt
|
new tmp.txt
|
||||||
q
|
q
|
||||||
" Need to wait a bit for the timestamp to be older.
|
|
||||||
call Fun_RenewFile()
|
call Fun_RenewFile()
|
||||||
call assert_equal(2, winnr())
|
call assert_equal(2, winnr())
|
||||||
wincmd p
|
wincmd p
|
||||||
|
@ -769,6 +769,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1870,
|
||||||
/**/
|
/**/
|
||||||
1869,
|
1869,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user