Re: vim not auto popup despite asyncomplete installed

2018-03-27 Thread Christian Brabandt

On Di, 27 Mär 2018, Cương Vũ Thế wrote:

> Dear all,
> I installed vim version from sourceforge, then install asyncomplete
> through vim-plug. 
> I made sure it installed properly.
> However as I typed text, the auto completion popup doesn't appeared at all.
> Do you have any advised about its cause?

you might want to ask the author of that plugin.


Best,
Christian
-- 
Der eingeborenste Begriff, der notwendigste, von Ursach' und 
Wirkung wird in der Anwendung die Veranlassung zu unzähligen sich 
immer wiederholenden Irrtümern.
-- Goethe, Maximen und Reflektionen, Nr. 937

-- 
-- 
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 http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: NERDTree opens half of screen instead of NERDTreeWinSize

2018-03-27 Thread Christian Brabandt

On Di, 27 Mär 2018, Oliver Graute wrote:

> On 24/03/18, Oliver Graute wrote:
> > my NERDTree seems to ignore my NERDTreeWinSize setting and opens instead
> > at half of the screen. Some ideas how to fix this?
> > 
> > https://github.com/scrooloose/nerdtree/issues/259
> 
> I observe the problem with latest NERDTree git commit a172d7cf and latest
> vim git commit 2a77d21f7.

If the plugin author does not fix it, I fear there is nothing we can do 
here. Besides probably not everybody here uses Nerdtree.

> Howto start vim with all plugins disabled except NERDTree?

Setting the rtp to that specific plugin and run vim with --clean

Or move your .vim out of the way and start with a fresh ~/.vim

Best,
Christian
-- 
Der Gedanke, daß jedes Mißgeschick
außerordentlich häufig vorkommt, nimmt ihm die Bedenklichkeit.
-- Stendhal (eig. Marie-Henri Beyle)

-- 
-- 
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 http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


vim not auto popup despite asyncomplete installed

2018-03-27 Thread Cương Vũ Thế
Dear all,
I installed vim version from sourceforge, then install asyncomplete
through vim-plug. 
I made sure it installed properly.
However as I typed text, the auto completion popup doesn't appeared at all.
Do you have any advised about its cause?
Below is my _vimrc.
Please help me. Thank you very much.

set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin

set diffexpr=MyDiff()
function MyDiff()
  let opt = '-a --binary '
  if  =~ 'icase' | let opt = opt . '-i ' | endif
  if  =~ 'iwhite' | let opt = opt . '-b ' | endif
  let arg1 = v:fname_in
  if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
  let arg2 = v:fname_new
  if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
  let arg3 = v:fname_out
  if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
  let eq = ''
  if $VIMRUNTIME =~ ' '
if  =~ '\ ' . arg3 . eq
endfunction

let g:bookmark_auto_close = 1
if has("gui_running")
  set background=light
  "colorscheme solarized8_low
   let s:uname = system("uname")
   if s:uname == "Darwin\n"
  set guifont=Inconsolata\ for\ Powerline:h19
   endif
endif

" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')

" Make sure you use single quotes


" On-demand loading
"Plug 'scrooloose/nerdtree', { 'on':  'NERDTreeToggle' }



Plug 'prabirshrestha/asyncomplete.vim'
call plug#end()
imap  (asyncomplete_force_refresh)
let g:asyncomplete_auto_popup = 1

-- 
-- 
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 http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: if only true in first file ?

2018-03-27 Thread M Kelly
I added a check in my lightline git branch routine to check for diff and set 
the correct "diff" status there, so its fixed now.
When I think about it, it makes sense this way. But at first I thought both 
files would go through the same .vimrc startup logic.
take care,
-mark

-- 
-- 
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 http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


if only true in first file ?

2018-03-27 Thread M Kelly
Hi,

In my .vimrc I have

if 
  let b:mckgitstatus = "diff"
else
  autocmd BufReadPost,BufNewFile,FileReadPost * call MyGitStatus()
  autocmd BufUnload * call MyGitLeave()
endif

And in the first file window I do see "diff" status as expected.
But the second file window does not have the "diff" status, but my git stuff.

Any idea why if  does not work for the second file window ?

thx always for vim and your support,
-mark

-- 
-- 
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 http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: NERDTree opens half of screen instead of NERDTreeWinSize

2018-03-27 Thread Oliver Graute
On 24/03/18, Oliver Graute wrote:
> my NERDTree seems to ignore my NERDTreeWinSize setting and opens instead
> at half of the screen. Some ideas how to fix this?
> 
> https://github.com/scrooloose/nerdtree/issues/259

I observe the problem with latest NERDTree git commit a172d7cf and latest
vim git commit 2a77d21f7.

Howto start vim with all plugins disabled except NERDTree?

Best Regards,

Oliver

-- 
-- 
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 http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.