Re: How to insert text on current text position when I press key in vim in insert and normal mode?

2018-06-11 Thread Tony Mechelynck
On Mon, Jun 11, 2018 at 9:57 PM, Christian Brabandt wrote: > > On Sa, 09 Jun 2018, Gena Makhomed wrote: > >> Hello, All! >> >> How to insert text on current text position >> when I press key in vim in insert and normal mode? >> >> I try to use macros, and put in .vimrc: >> >> let @n = "i\" >>

Re: Minimal colorscheme

2018-06-11 Thread Константин Изюмов
Thank, it is look good. I will try . Like I understood that script switch off unused regex for unused color group. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

Re: Minimal colorscheme

2018-06-11 Thread Dmitri Vereshchagin
On Mon, Jun 11, Константин Изюмов wrote: How to minimize colorscheme? I want have color identification only for comments and strings inside"". Color identification for type, standard words is no need for myself. You can clear highlighting for some groups defined in syncolor.vim. For example

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 > returns > > > >

Re: How to insert text on current text position when I press key in vim in insert and normal mode?

2018-06-11 Thread Christian Brabandt
On Sa, 09 Jun 2018, Gena Makhomed wrote: > Hello, All! > > How to insert text on current text position > when I press key in vim in insert and normal mode? > > I try to use macros, and put in .vimrc: > > let @n = "i\" > > then I switch no normal mode - I can run this macro by pressing @n

Re: Minimal colorscheme

2018-06-11 Thread Christian Brabandt
On Mo, 11 Jun 2018, Константин Изюмов wrote: > How to minimize colorscheme? > I want have color identification only for comments and strings inside"". > Color identification for type, standard words is no need for myself. okay, this might be a hack, but you might get away with something like

Re: gvim - omnicompletiton problems with html files

2018-06-11 Thread Christian Brabandt
On Mo, 11 Jun 2018, simo zz wrote: > But when I have to edit some HTML file, after typing each word gvim returns  > > E764: option 'omnifunc' is not set > > or when I press C-s sometimes gvim prints the call to GuiSave(), for example > > :call GuiSave() > > which is quiet annoying. >

How to insert text on current text position when I press key in vim in insert and normal mode?

2018-06-11 Thread Gena Makhomed
Hello, All! How to insert text on current text position when I press key in vim in insert and normal mode? I try to use macros, and put in .vimrc: let @n = "i\" then I switch no normal mode - I can run this macro by pressing @n but how to bind this macro to key in normal and insert mode?

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()*

Minimal colorscheme

2018-06-11 Thread Константин Изюмов
How to minimize colorscheme? I want have color identification only for comments and strings inside"". Color identification for type, standard words is no need for myself. Thank you for any feedback -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply

Re: execute "conf qa" or ":conf qa"

2018-06-11 Thread M Kelly
> So if the operand of :execute starts with a colon, that colon is not harmful, > but it isn't necessary either. Thank you so much Tony for explaining that. -mark -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to.