Re: Lose highlighting when Index.wiki is loaded from Dropbox

2020-03-22 Thread Ryan
Hi Eric, I too use vimwiki located in a grive folder, with no issues. In the hope it's some help, below, are the only settings I seem to have in my .vimrc relating to vimwiki. Kind regards, Ryan Enter code here... let g:vimwiki_list = [{ \ 'path': '$HOME/google-drive/vimwiki

Re: omnicomplete failure when importing modules installed via condas

2020-03-07 Thread Ryan
Hi, I've started using pipenv instead of anacondas: and then running gvim from within the pipenv enviroments which solves all of the issues. cheers, Ryan On Friday, 6 March 2020 22:28:19 UTC, Ryan wrote: > > Hi, > > I seem to have run into a snag with vim's c-x c-o

omnicomplete failure when importing modules installed via condas

2020-03-06 Thread Ryan
if there's a simple addition to .vimrc I can make to force omnicomplete to look in the anaconda install folder in my home directory? Many Thanks, Ryan (running gvim on Debian 10) -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the t

Re: How to do block pasting?

2017-01-22 Thread Ryan Nabinger
A quick note: I find P more useful than p because of columns' typical left-alignment and my desire to not mangle the tailend of my paste destination. Also, 1v is very useful when dealing with blocks (:he visual-start), especially when transposing blocks / overwriting blocks. On Sunday,

cursor jumping in netrw with netrw_liststyle=3

2015-11-06 Thread Ryan Williams
of the list even in tree view, which should not happen. I'm using Vim 7.4.903 which has netrw v154. Does anyone know a workaround or fix? Thanks, Ryan -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to

When searching for a single digit gn/gN visually selects too much

2013-10-02 Thread Ryan Carney
I think I may have found a bug, I have list the steps to reproduce it. 1. open a new buffer :tabe or :e test 2. put two single digits on different lines 3. search using the regex '\d' (without quotes) 4. put your cursor before or on the first digit then press gn I've tested this on vim 7.4

Re: gvim doesn't refresh screen correctly on windows when scrolling

2013-09-19 Thread Ryan Turner
I don't know why it's happening, but you might try :help CTRL-L and :help redraw. If those work (it may only work in the terminal) you might bind it to a common key, e.g. :noremap j C-Lj, but that is obviously a hack. Hopefully someone can give a more complete solution. Ryan On Sep 19, 2013

Setting titleold does not work

2013-05-14 Thread Ryan
is Yakuake. I moved my .vim dir and .vimrc file to .bkp_vim and .bkp_vimrc to make sure there were no scripts or plugins doing this. It appears this is vim doing it. Ryan -- -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are replying

Re: vimim chinese input

2012-12-09 Thread Ryan Feng
Hello Eric, Here's an English quickstart wiki page on vimim's website, you might want to check it: https://code.google.com/p/vimim/wiki/QuickStart I've used vimim for a while, it's not a very good Chinese input method in my experience, especially the input speed is slow and sometimes it gives

Re: reading contents from a file under directories specified by path variable

2011-06-03 Thread Ryan Aviles
When I do :find filename_without_dir It opens the file even if its outside my current working directory. No need for the :r On Fri, Jun 3, 2011 at 2:38 PM, Aman Jain amanjain.nit...@gmail.com wrote: Hi I know vim supports searching for files in those directories which are specified by the

Re: Load files which contain a given string?

2011-03-15 Thread Ryan Williams
-o $(grep -rl string directory) ? Ryan -- 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

Re: NERDTree on startup

2011-01-07 Thread Ryan Williams
Is it possible to have NERDtree loaded on startup, but to have the cursor not in the NERDTree buffer? I have tried: function! LoadNERDTree() :NERDTree normal c-wl endf :au VimEnter * :call LoadNERDTree() But the problem is that I end up starting in the NERDTree buffer rather than

Re: Improve your Vim skills on http://vimgolf.com/

2010-12-31 Thread Ryan Williams
Enjoy http://vimgolf.com/ on holidays :) Is there no way to register or sign in without a twitter account? -- 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

How can I make a directory the new top directory in netrw tree view?

2010-11-29 Thread Ryan Williams
vim 7.2 netrw v136 From the documentation it seems like c is the closest thing but it doesn't change the tree view. -- 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: How to change the 'E' behavior in visual mode

2010-11-26 Thread Ryan J M
On Fri, Nov 26, 2010 at 1:03 PM, Anurag Priyam anurag08pri...@gmail.com wrote:     when I try to use 'E' to select several words, let's say for 'a/b/c: 123', the cursor now stops at 'a', and I wish to select 'a/b/c' in visual mode, ':' was also selected when I type 'E'. Am I missing anything?

How to change the 'E' behavior in visual mode

2010-11-25 Thread Ryan J M
Hi there, when I try to use 'E' to select several words, let's say for 'a/b/c: 123', the cursor now stops at 'a', and I wish to select 'a/b/c' in visual mode, ':' was also selected when I type 'E'. Am I missing anything? I take a glance at 'iskeyword', seems it was not talking about this.

Re: Any tricks to quit vim without interruption raised by unsaved [No Name] tab/buffers?

2010-11-16 Thread Ryan J M
On Tue, Nov 16, 2010 at 4:43 PM, John Beckett johnb.beck...@gmail.com wrote: Ryan J M wrote: Great, it works! Though it creates a split window, I will try to create a new scratch TAB later. Instead of 'new' use 'tabe' (or 'tabnew'). John Thanks, I have got what I need. :) -- FIXME

Any tricks to quit vim without interruption raised by unsaved [No Name] tab/buffers?

2010-11-15 Thread Ryan J M
Usually i use 'tabnew' to open several [No Name] tabs to do tmp work, and when I try to quit vim, 'qa' feels unhappy for the unsaved [No Name] buffers, and 'qa!' may do bad things if i leave some important files unsaved. Is there any vim option i can use for this case? or I need to write a vim

Re: Any tricks to quit vim without interruption raised by unsaved [No Name] tab/buffers?

2010-11-15 Thread Ryan J M
On Tue, Nov 16, 2010 at 11:19 AM, John Beckett johnb.beck...@gmail.com wrote: Ryan J M wrote: Usually i use 'tabnew' to open several [No Name] tabs to do tmp work, and when I try to quit vim, 'qa' feels unhappy for the unsaved [No Name] buffers,  and 'qa!' may do bad things if i leave some

Re: Any tricks to quit vim without interruption raised by unsaved [No Name] tab/buffers?

2010-11-15 Thread Ryan J M
On Tue, Nov 16, 2010 at 1:00 PM, ZyX zyx@gmail.com wrote: Reply to message «Re: Any tricks to quit vim without interruption raised by unsaved [No Name] tab/buffers?», sent 07:55:32 16 November 2010, Tuesday by Ryan J M: Thanks a lot for the sharing! I guess that is exactly when I

mapping ^M in .vimrc

2010-11-10 Thread Ryan J M
Hi there, I mapped a short key for command :s/\s\+/^M/g in .vimrc (^M was typed using C-V,C-M), but the short key doesn't work as expected. Can someone share some suggestions? -- FIXME if it is wrong. -- You received this message from the vim_use maillist. Do not

Re: % can't make cursor from one quote to its corresponding quote?

2010-08-05 Thread Ryan Williams
% can't make cursor jump from one quote to its corresponding quote? You may be interested in the surround.vim plugin - it doesn't have the % behavior you want, but it has many commands that may accomplish what you're trying to do. http://www.vim.org/scripts/script.php?script_id=1697 -- You

paste via shift+insert in gnome-terminal sucks when set fo+=cro

2010-03-18 Thread Ryan J M
Hi there, when I paste C code from another vim (located at another gnome-terminal tab) to my working vim, shift+insert auto commented and aligned the code, which is not what I want. After a quick search using google, I found a workaround, :set paste before I press shift+insert. However,

Re: paste via shift+insert in gnome-terminal sucks when set fo+=cro

2010-03-18 Thread Ryan J M
On Fri, Mar 19, 2010 at 7:52 AM, John Little john.b.lit...@gmail.com wrote: No, vim is just getting the pasted text from gnome-terminal, as if you'd typed it.  It seems to be hard coded into gnome-terminal (or the terminal widget it uses); there's chatter about it in the bug trackers.  If

tab opened by ‘Ctrl+W gf ‘ always located at the Tab 1, How to locate it after the current tab?

2009-12-08 Thread Ryan J M
Am I missed anything? Thanks, -- FIXME if it is wrong. -- You received this message from the vim_use maillist. For more information, visit http://www.vim.org/maillist.php

Re: paging the output of a shell command

2009-10-23 Thread Ryan Ye
Try this your-text-output | vim - Sent from my iPhone 在 Oct 23, 2009,3:36 PM,John Magolske b79...@gmail.com 写到: When the output of a shell command exceeds one page, the text scrolls all the way to the end. Is there a way to have Vim only display the first page and allow one to advance

Strange mouse middle button behavior when cscope jumpping

2009-09-24 Thread Ryan J M
when I jump by clicking CTRL+left mouse button, it jumps as expected, But when jump done, I want to use middle button for scrolling, it changes in pages(half page?) instead of lines. Can I fixed it? I took a glance at my cscope_map.vim, found no desc on mouse behavior. Thanks -- FIXME if it

Re: how to make 'expand(%:p:h)' work with directory name contains space

2009-09-20 Thread Ryan J M
remember having fnameescape() when I first learned vim. So yes, Ryan, fnameescape(expand(%:p:h)) is a better choice :) thanks, applied~ -- FIXME if it is wrong. --~--~-~--~~~---~--~~ You received this message from the vim_use maillist. For more information

how to make 'expand(%:p:h)' work with directory name contains space

2009-09-19 Thread Ryan J M
I use this map a lot, but it seems not working with directory name contains space map ,e :e C-R=expand(%:p:h) . / CR any direction? Thanks -- FIXME if it is wrong. --~--~-~--~~~---~--~~ You received this message from the vim_use maillist. For more information,

Re: how to make 'expand(%:p:h)' work with directory name contains space

2009-09-19 Thread Ryan J M
On Sat, Sep 19, 2009 at 5:04 PM, Tim Chase v...@tim.thechases.com wrote: I use this map a lot, but it seems not working with directory name contains space map ,e :e C-R=expand(%:p:h) . / CR You might try wrapping it in an escape() call:   map leadere :e c-r=escape(expand(%:p:h), )./cr

Re: how to make 'expand(%:p:h)' work with directory name contains space

2009-09-19 Thread Ryan J M
On Sat, Sep 19, 2009 at 6:10 PM, Tim Chase v...@tim.thechases.com wrote: Hrm...an extra space seems to be missing from there.  I guess that's what I get for typing at 3:00am while feeding the kid. That should have been   map leadere :e c-r=escape(expand(%:p:h), )./cr                      

Re: vim patchs - why not a big-patch?

2009-07-19 Thread Ryan J M
2009/7/19 Raúl Núñez de Arenas Coronado raul...@gmail.com: Probably your problem is that your vim72 sources doesn't include the extra files? If you are going to use all the patches published by Bram you need to have the pristine sources and the extra sources. This is a blind shot because I

vim patchs - why not a big-patch?

2009-07-18 Thread Ryan J M
I have been a vimmer for years, but it was my first time to build it from src, because I found that my CENTOS vim got some problems on cscope co-operations. Following README file lcoated at ftp://ftp.vim.org/pub/vim/patches/7.2/README, I got a little pain when patching. please take a look at logs

Re: Navigating complicated file hierarchies

2009-01-05 Thread Ryan Phillips
Tony's reply, you might want to try the fuzzyfinder plugin. It may help navigate directories a bit easier. -Ryan --~--~-~--~~~---~--~~ You received this message from the vim_use maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---