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 f20cef3 commit 5ee8914Copy full SHA for 5ee8914
autoload/startify.vim
@@ -918,6 +918,10 @@ function! startify#set_mark(type, ...) abort
918
let index = expand('<cword>')
919
setlocal modifiable
920
921
+ " https://github.com/vim/vim/issues/8053
922
+ let showmatch = &showmatch
923
+ let &showmatch = 0
924
+
925
if entry.marked && index[0] == a:type
926
let entry.cmd = 'edit'
927
let entry.marked = 0
@@ -930,6 +934,8 @@ function! startify#set_mark(type, ...) abort
930
934
execute 'normal! "_ci]'. repeat(a:type, len(index))
931
935
endif
932
936
937
+ let &showmatch = showmatch
938
933
939
setlocal nomodifiable nomodified
940
" Reset cursor to fixed column, which is important for s:set_cursor().
941
call cursor(origline, s:fixed_column)
0 commit comments