Re: gvim - omnicompletiton problems with html files

2018-06-11 Thread simo zz
Hi, I finally solved with *: filetype plugin on* in ~/.vimrc. Now gvim behaves correctly. Regards, s. On Mon, Jun 11, 2018 at 9:40 PM, Christian Brabandt wrote: > > On Mo, 11 Jun 2018, simo zz wrote: > > > But when I have to edit some HTML file, after typing each word

gvim - omnicompletiton problems with html files

2018-06-11 Thread simo zz
Hi, In my ~/.vimrc setup I set the following function and autocmd *function! GuiSave()* * if has('gui_running') * * if empty(bufname(''))* * browse confirm write* * else* * confirm write* * endif* * endif* *endfunction* *:vnoremap :call GuiSave()*