vim indexer with auto complete plugin

2013-05-01 Thread rlewis
After using indexer plugin[1] a while, it basically fulfills my requirement. So is there any recommended plugin that would work with indexer plugin? Previously I use javacomplete, but looks like it is incompatible with other `jump to definition function` plugin like easytags, indexer. Thanks f

Re: :Explore shows nothing if path contains an embedded tilde (Windows)

2013-05-01 Thread Charles E Campbell
Ben Fritz wrote: On Tuesday, April 30, 2013 5:38:06 PM UTC-5, Dameron, Gregg wrote: I’m running gvim 7.2 on Windows 7. If I attempt “:Explore” or “:e .” when any folder in my current working directory contains a tilde (e.g., “my~example_folder”), the Netrw Directory Listing buffer displa

Fix for missing keys on bluetooth keyboards

2013-05-01 Thread Eric Weir
For those who're trying to get vim going on tablets with bluetooth keyboards, it appears this provides solution for missing keys. Regards, ---

Removing junk .swp files

2013-05-01 Thread BPJ
Is there any easy/automatized way to remove junk (as in not associated with any file currently open in (g)vim) .swp files in the current directory and its subdirectories? A plugin perhaps? /bpj -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below t

Re: Removing junk .swp files

2013-05-01 Thread Mike Hume
You could setup a tmp directory for where swp files are stores. set directory=~/.vim/tmp/swap If you have swp files littered about, run this command to recursively find and delete them: find . -type d -name .swp | xargs rm -rf ~Mike On May 1, 2013, at 10:49 AM, BPJ wrote: > Is there any ea

Re: Removing junk .swp files

2013-05-01 Thread Ben Fritz
On Wednesday, May 1, 2013 12:49:06 PM UTC-5, BPJ wrote: > Is there any easy/automatized way to remove junk (as in not > > associated with any file currently open in (g)vim) .swp files > > in the current directory and its subdirectories? > > A plugin perhaps? > Such .swp files should never exi

Re: Removing junk .swp files

2013-05-01 Thread Mike Hume
Scratch the part about -type d ~Mike On May 1, 2013, at 10:49 AM, BPJ wrote: > Is there any easy/automatized way to remove junk (as in not associated with > any file currently open in (g)vim) .swp files > in the current directory and its subdirectories? > A plugin perhaps? > > /bpj > > -- >

Re: Removing junk .swp files

2013-05-01 Thread Ben Fritz
On Wednesday, May 1, 2013 2:12:58 PM UTC-5, Ben Fritz wrote: > > Such .swp files should never exist if you always exit Vim normally. > > Only when Vim crashes or gets terminated abnormally will you have such files > hanging around. > Also there may be swap files associated with a DIFFERENT Vim

Re: Removing junk .swp files

2013-05-01 Thread Edward Beckett
mike's suggestion is I similar to what I use... and it works quite well... I also prepend the abs path to the file to avoid name collisions... On May 1, 2013 1:49 PM, "BPJ" wrote: > Is there any easy/automatized way to remove junk (as in not associated > with any file currently open in (g)vim) .s

Re: Fix for missing keys on bluetooth keyboards

2013-05-01 Thread Eric Weir
On May 1, 2013, at 10:33 AM, Eric Weir wrote: > For those who're trying to get vim going on tablets with bluetooth keyboards, > it appears this provides solution for missing keys. > Apparen

Does vim support markdown?

2013-05-01 Thread Eric Weir
I'm a bit confused. The issue is raised by my ongoing project of getting my vim set up running in vim touch on an android tablet. I use vimwiki with markdown syntax a lot on my laptop. Trying to get vimwiki going on the tablet makes me wonder how that is possible, since I do not have a markdown

Re: Removing junk .swp files

2013-05-01 Thread tooth pik
On Wed, May 01, 2013 at 12:11:08PM -0700, Mike Hume wrote: > You could setup a tmp directory for where swp files are stores. > set directory=~/.vim/tmp/swap > If you have swp files littered about, run this command to > recursively find and delete them: > find . -type d -name .swp | xargs rm -rf

Re: Does vim support markdown?

2013-05-01 Thread Tim Gray
On May 01, 2013 at 04:24 PM -0400, Eric Weir wrote: Initially I was going to ask if vim supports markdown syntax, but now I'm guessing vimwiki itself processes the markdown coding in vimwiki documents? Is that right? My copy of Vim (MacVim) has a copy of markdown.vim in $VIMRUNTIME/syntax. S

Re: Does vim support markdown?

2013-05-01 Thread Chris Schneider
VimWiki uses its own syntax by default, but there's an option to make it use markdown instead. All that does is to change the highlighting while you're in vimwiki land. Separately, vim has a syntax file that maps to .markdown files as well. In any case, vim itself does not render markdown files

Re: Removing junk .swp files

2013-05-01 Thread Edward Beckett
And if you pass the -d argument to the find method it will never match swp files :-) On May 1, 2013 4:37 PM, "tooth pik" wrote: > On Wed, May 01, 2013 at 12:11:08PM -0700, Mike Hume wrote: > > You could setup a tmp directory for where swp files are stores. > > > set directory=~/.vim/tmp/swap > >

Re: Removing junk .swp files

2013-05-01 Thread BPJ
2013-05-01 21:16, Ben Fritz skrev: On Wednesday, May 1, 2013 2:12:58 PM UTC-5, Ben Fritz wrote: Such .swp files should never exist if you always exit Vim normally. Only when Vim crashes or gets terminated abnormally will you have such files hanging around. Also there may be swap files asso

RE: outlookvim

2013-05-01 Thread Paul
Hi, My very non-tech way is to eyeball the document looking for any characters that are not in character encoding (e,g. Latin characters--a-z, A-Z, 0-9, space, or punctuation). So if you receive such emails let's say with foreign language content, as I do, or other symbols, it's likely unicode

Running Indent in a Cygwin Shell from GVim

2013-05-01 Thread Waters, Bill
This may be more of a Cygwin question, but I'll see if you guys can help... I am trying to use indent (http://www.gnu.org/software/indent/manual/indent.html) on my new Win7 machine. When I ran it from GVim, I got a bunch of ^M characters inserted into the result. I had the same problem runnin

Re: Still having different pwd for different windows

2013-05-01 Thread AndyHancock
On Apr 29, 3:12 am, Paul Isambert wrote: >AndyHancock a écrit: >> I posted previously about the fact that pwd returns different >> directories for different windows. I was pointed to autochdir, in >> particular: >> >>verbose set autochdir? >> >> which always returns noautochdir. >> >> I alread

Re: Still having different pwd for different windows

2013-05-01 Thread AndyHancock
On Apr 29, 5:09 am, Marcin Szamotulski wrote: > If the above will not solve your problem you can record your local > directory in vimrc: > >let g:pwd = getcwd() > > and in a '.vim/after/plugin/myscript.vim' use: > >set noautochdir >exe 'cd '.fnameescape(g:pwd) > > If this was due to lcd