Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim · Vim (Vi IMproved) text editor users list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 136052 - 136081 of 137733   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#136052 From: Ben Fritz <fritzophrenic@...>
Date: Sat Feb 9, 2013 3:39 am
Subject: Re: Omnicomplete shows strange behavior when preview window is enabled
fritzophrenic@...
Send Email Send Email
 
On Friday, February 8, 2013 9:37:18 PM UTC-6, Ben Fritz wrote:
> On Fri, Feb 8, 2013 at 9:32 PM, Benjamin Fritz <fritzophrenic@...>
wrote:
>
> > The attached vimrc.vim file (when used as the .vimrc, with no
>
> > non-standard plugins), can reproduce the issue on the attached test.c
>
> > file with the attached tags file.
>
> >
>
>
>
> gmail is being a huge pain. tags file attached...again.

OK this is getting ridiculous. It's attached to the email. Generate your own
tags or copy-paste the following into a new file:

!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@.../
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.8 //
Func1 .\test.c ?^int Func1(void)$?;" function signature:(void)
Func2 .\test.c ?^int Func2(void)$?;" function signature:(void)
Func3 .\test.c ?^int Func3(void)$?;" function signature:(void)
Func4 .\test.c ?^int Func4(void)$?;" function signature:(void)
Func5 .\test.c ?^int Func5(void)$?;" function signature:(void)
Func6 .\test.c ?^int Func6(void)$?;" function signature:(void)
Func7 .\test.c ?^int Func7(void)$?;" function signature:(void)
Func8 .\test.c ?^int Func8(void)$?;" function signature:(void)
FuncCall .\test.c ?^int FuncCall(int a, int b, int c, int d, int e, int f, int
g)$?;" function signature:(int a, int b, int c, int d, int e, int f, int g)
test.c .\test.c 1;" file

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136053 From: Bee <forth@...>
Date: Sat Feb 9, 2013 3:46 am
Subject: ios vim and plugins
forth@...
Send Email Send Email
 
There is a version of vim for the ios (iphone, ipad).

It has a .vim directory, I can move files into it, but can not create
new directories.

Is it possible to use plugins without them being in the standard
'plugin' directory?

Bill

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136054 From: Marcin Szamotulski <mszamot@...>
Date: Sat Feb 9, 2013 7:17 am
Subject: Re: ios vim and plugins
mszamot@...
Send Email Send Email
 
You can source them:

:so[urce] {file}

If you have there a .vimrc file then you could write autocommands to do
that.  This way you can emulate ftplugin directory.

Vim also has the autoload directory, and I thing sourcing files inside them
should also work.

Marcin

On 19:46 Fri 08 Feb     , Bee wrote:
> There is a version of vim for the ios (iphone, ipad).
>
> It has a .vim directory, I can move files into it, but can not create
> new directories.
>
> Is it possible to use plugins without them being in the standard
> 'plugin' directory?
>
> Bill
>
> --
> --
> 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+unsubscribe@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136055 From: Christian Brabandt <cblists@...>
Date: Sat Feb 9, 2013 1:46 pm
Subject: Re: Getting "gf" to support custom remote paths similar to "scp://"
cblists@...
Send Email Send Email
 
Hi David!

On Fr, 08 Feb 2013, David Barnett wrote:

> On Thursday, December 6, 2012 7:45:16 AM UTC-8, Charles Campbell wrote:
> > Check out how netrw does it -- see netrwPlugin.vim .  Essentially, it
> >
> > involves making an appropriate autocmd.
> Nope, I already made the necessary autocmd (as I mentioned above), but it
turns out it's a limitation of vim and it would be impossible for me to have
"my_scheme://anything" handled by the "gf" mapping without modifying vim's code.
>
> It has a special case in find_file_name_in_path() to accept anything with
"://" in it (or almost anything... "myscheme://anything" is accepted but
"my_scheme://anything" isn't). In my case I was trying to set something up for
perforce depot paths that begin with "//depot/".
>
> It would be really great if, instead of having a hack to look for "://", vim
would check for a matching BufReadCmd autocmd and base the decision of whether
to accept the filename on that. In that case "foo://bar" would no longer be
accepted as valid and my "//depot/something" would start being accepted since
I've defined the autocmd.

I don't really understand your problem, but hey, you can always propose
a patch to change Vims behaviour.

Mit freundlichen Grüßen
Christian
--
Hallo. Ich bin eine Lösung auf der Suche nach ihrem Problem.

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136056 From: Niels Kobschätzki <niels@...>
Date: Sat Feb 9, 2013 2:12 pm
Subject: Re: A plugin that works like Hyperlink Helper from TextMate?
niels@...
Send Email Send Email
 
On Thu, Feb 7, 2013, at 0:08, Tony Mechelynck wrote:
> On 06/02/13 23:11, Niels Kobschätzki wrote:
> > Hi,
> >
> > TextMate has a bundle that is called Hyperlink Helper. Its function is
> > that I can highlight a passage of text and then either via a command
> > make a link out of it with the content of the clipboard as URL or that
> > the passage is searched via google, wikipedia or yahoo and an
> > appropriate link is created. The interesting thing is that the style of
> > the link depends on the set syntax. Thus when I use the bundle with a
> > Markdown-file the link becomes a Markdown-link, if I use it in an
> > HTML-file a link in the format of HTML created.
> > Does anybody know if there's a plug-in for vim that has a similar
> > functionality?
> >
> > Thanks,
> >
> > Niels
> >
>
> Hm, AFAIK, there isn't, but it is certainly possible. To build this
> functionality, you would need to add a global plugin parameterized with
> a buffer-local variable defining how to build a link, and then set that
> variable, probably in the various filetype-plugins for file types where
> links are possible. Something similar in concept to the matchit plugin,
> which has a b:match_words variable which is set by the filetype-plugins
> for some filetypes.

hm…ok…so it is doable but it sounds kind of complex…

Thanks,

Niels

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136057 From: Niels Kobschätzki <niels@...>
Date: Sat Feb 9, 2013 2:13 pm
Subject: Re: A plugin that works like Hyperlink Helper from TextMate?
niels@...
Send Email Send Email
 
On Thu, Feb 7, 2013, at 7:32, Christian Brabandt wrote:
> On Wed, February 6, 2013 23:11, Niels Kobschätzki wrote:
> > Hi,
> >
> > TextMate has a bundle that is called Hyperlink Helper. Its function is
> > that I can highlight a passage of text and then either via a command
> > make a link out of it with the content of the clipboard as URL or that
> > the passage is searched via google, wikipedia or yahoo and an
> > appropriate link is created. The interesting thing is that the style of
> > the link depends on the set syntax. Thus when I use the bundle with a
> > Markdown-file the link becomes a Markdown-link, if I use it in an
> > HTML-file a link in the format of HTML created.
> > Does anybody know if there's a plug-in for vim that has a similar
> > functionality?
> >
> > Thanks,
>
> You could try the utl plugin
> http://www.vim.org/scripts/script.php?script_id=293

If I read that correctly that plug-in is actually for enabling links in
plain-text to work and not add all like the functionality I was
describing.

Thanks,

Niels

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136058 From: Eric Weir <eeweir@...>
Date: Sat Feb 9, 2013 6:50 pm
Subject: Re: ios vim and plugins
eeweir@...
Send Email Send Email
 
On Feb 8, 2013, at 10:46 PM, Bee wrote:

> There is a version of vim for the ios (iphone, ipad).
>
> It has a .vim directory, I can move files into it, but can not create
> new directories.
>
> Is it possible to use plugins without them being in the standard
> 'plugin' directory?

I'd like to get my vim setup I have on my macbook---the .vim folder with all its
subfolders and plugin folders---onto my ipad. I've been led to believe I can use
vimball for that purpose. Is that the case? All the instructions I've seen so
far assume it's a plugin that's being put into the vimball.

Thanks,
--------------------------------------------------------------------------------\
----------
Eric Weir
eeweir@...

"The invincible shield of caring
Is a weapon sent from the sky
against being dead."

- Tao Te Ching 67







--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136059 From: Xavier de Gaye <xdegaye@...>
Date: Sat Feb 9, 2013 7:31 pm
Subject: [ANN] pyclewn release 1.10
xdegaye@...
Send Email Send Email
 
Pyclewn 1.10 has been released at http://pyclewn.sourceforge.net/

Pyclewn is a Python program that allows the use of Vim as a front end
to the GNU debugger gdb and as a front-end to a Python debugger.

Pyclewn uses now pdb-clone for debugging Python programs, instead of the
standard library Python debugger, pdb:

* With breakpoints, pyclewn runs now just above the speed of the
   Python interpreter, while the command line Python debugger, pdb,
   runs at 10 to 100 times the speed of the interpreter.

* pdb-clone fixes also many pdb long standing bugs.

Xavier

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136060 From: Zyad <zyad.mohamed@...>
Date: Sat Feb 9, 2013 8:19 pm
Subject: Using auto-format with LaTeX
zyad.mohamed@...
Send Email Send Email
 
Hi,

I'm finding the auto-format option very attractive (setl fo+=a), but I'm having
trouble getting it to work nicely when editing LaTeX documents.

More specifically, I'd like to make it aware of LaTeX keywords so that, for
example, when writing the following,

This is a paragraph that is properly
formatted to have a textwidth of 40.
'auto-format' helps maintain it in a
formatted form, even if I edit parts of
it.
\begin{equation}
z^2 = x^2 + y^2
\end{equation

as soon as I enter '\', the cursor moves to the previous line. Is it possible to
have auto-format understand that a keyword like '\begin{' should not be
considered part of the paragraph before it? I'm aware of formatoptions' 'w'
flag, but it is inconvenient for me since the document is usually edited by
others.

Thanks,
Zyad

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136061 From: EdwardBeckett <edward@...>
Date: Sat Feb 9, 2013 9:52 pm
Subject: Vim :: How To Disable Swap File for FileType
edward@...
Send Email Send Email
 
Shameless double post --
http://stackoverflow.com/questions/14791902/vim-how-to-disable-swap-file-for-fil\
etype
<http://stackoverflow.com/questions/14791902/vim-how-to-disable-swap-file-for-fi\
letype>

I'm attempting to disable swap specifically for text files. However, autocmd
attempts are not working correctly. Is it possible to disable swap on a
filetype basis?

_vimrc

call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
call pathogen#infect()
filetype plugin indent on
...
autocmd FileType text set noswapfile // fails ...




--
View this message in context:
http://vim.1045645.n5.nabble.com/Vim-How-To-Disable-Swap-File-for-FileType-tp571\
3719.html
Sent from the Vim - General mailing list archive at Nabble.com.

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136062 From: ping <songpingemail@...>
Date: Sun Feb 10, 2013 2:48 am
Subject: Re: vim: is there an easy way to visual select the just pasted texts?
songpingemail@...
Send Email Send Email
 
On 2/8/2013 6:52 PM, Chris Lott wrote:
> re: Selecting pasted text. If you do a search for "re-selecting block
> in different buffer" you will see some more advice on this topic.
>
> c
> --
> Chris Lott <chris@...>
>
thanks !
I should have done some homework myself...

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136063 From: ping <songpingemail@...>
Date: Sun Feb 10, 2013 2:49 am
Subject: Re: vim: is there an easy way to visual select the just pasted texts?
songpingemail@...
Send Email Send Email
 
On 2/8/2013 11:53 AM, Nicolas Dermine wrote:



On Fri, Feb 8, 2013 at 5:45 PM, ping <songpingemail@...> wrote:
On 2/7/2013 3:39 PM, ping wrote:
> this is a small feature I constantly wanted to have but failed, I thought it hardly , and my idea is:
> use a function or new map, to make sure before paste, recording the positions/marks of the 2 lines that the new texts are going to be inserted into, say mark x/y
> then define a new map, so after paste, use these 2 marks to visual select the newly-pasted texts ('xjV'yk)...
> but this sounds a bit stupid -- have to change current "paste" behavior in order to "capture" the newly pasted texts.
> is there any better way to do that?

Hi ping,

I googled the subject of your message and found this : http://vim.wikia.com/wiki/Selecting_your_pasted_text

`[v`]

it seems to work.

nico

that works, thanks!
 



--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

#136064 From: ping <songpingemail@...>
Date: Sun Feb 10, 2013 2:51 am
Subject: vim: display â<80><99>
songpingemail@...
Send Email Send Email
 
I've copied and pasted an article from web page and it looks I got a lot
of following:

â<80><99>

so essentially it should be just a ' character, for example:

If youâ<80><99>ve

is there a way to get them displayed/processed well?

thanks!
regards
ping

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136065 From: Ben Fritz <fritzophrenic@...>
Date: Sun Feb 10, 2013 3:24 am
Subject: Re: Vim :: How To Disable Swap File for FileType
fritzophrenic@...
Send Email Send Email
 
On Saturday, February 9, 2013 3:52:52 PM UTC-6, edw...@... wrote:
>
> autocmd FileType text set noswapfile // fails ...
>

This should work, the :help for 'swapfile' says:

	 When 'swapfile' is reset, the swap file for the current buffer is
	 immediately deleted.  When 'swapfile' is set, and 'updatecount' is
	 non-zero, a swap file is immediately created.

Why do you think it's not working?

Maybe your "text" filetype isn't being detected? I didn't think there was such a
filetype by default. What is the value of your filetype option in the file
you're worried about?

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136066 From: Ben Fritz <fritzophrenic@...>
Date: Sun Feb 10, 2013 3:27 am
Subject: Re: vim: display â<80><99>
fritzophrenic@...
Send Email Send Email
 
On Saturday, February 9, 2013 8:51:28 PM UTC-6, ping wrote:
> I've copied and pasted an article from web page and it looks I got a lot
>
> of following:
>
>
>
> �<80><99>
>
>
>
> so essentially it should be just a ' character, for example:
>
>
>
> If you�<80><99>ve
>
>
>
> is there a way to get them displayed/processed well?
>
>

Figure out what encoding the text is supposed to be in, make sure your
'encoding' option can represent all the desired characters, and save/load the
file in the correct 'fileencoding'.

:help 'encoding'
:help 'fileencoding'
:help 'fileencodings'
:help multibyte
http://vim.wikia.com/wiki/Working_with_Unicode


--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136067 From: David Sanson <dsanson@...>
Date: Sun Feb 10, 2013 3:35 am
Subject: Re: ios vim and plugins
dsanson@...
Send Email Send Email
 
Oh! That's a neat idea: just use vimball to pack the whole structure of your
.vim folder into a single text file, and use it again to unpack on the iPad.
Does it work? I can't see why it wouldn't.

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136068 From: EdwardBeckett <edward@...>
Date: Sun Feb 10, 2013 3:43 am
Subject: RE: Vim :: How To Disable Swap File for FileType
edward@...
Send Email Send Email
 

I change _vimrc to filetype text  as a test I.E. set ft=text and the swap file was still being created … However, I disabled my plugins and the autocmd worked … I’m of the impression there’s a conflict with subsequent filetype settings …

 

As such I decided on an alternative :: Saving the swaps into a dedicated directory …

 

IE. set dir=$HOME/_vimswap//,%TEMP%//,/%TMP%//,.

 

That will work for me …

 

Thanks Benjamin

 

 

From: Benjamin Fritz [via VIM] [mailto:[hidden email]]
Sent: Saturday, February 09, 2013 10:24 PM
To: EdwardBeckett
Subject: Re: Vim :: How To Disable Swap File for FileType

 

On Saturday, February 9, 2013 3:52:52 PM UTC-6, [hidden email] wrote:
>
> autocmd FileType text set noswapfile // fails ...
>

This should work, the :help for 'swapfile' says:

        When 'swapfile' is reset, the swap file for the current buffer is
        immediately deleted.  When 'swapfile' is set, and 'updatecount' is
        non-zero, a swap file is immediately created.

Why do you think it's not working?

Maybe your "text" filetype isn't being detected? I didn't think there was such a filetype by default. What is the value of your filetype option in the file you're worried about?

--
--
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 click here.
NAML



View this message in context: RE: Vim :: How To Disable Swap File for FileType
Sent from the Vim - General mailing list archive at Nabble.com.

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

#136069 From: Marcin Szamotulski <mszamot@...>
Date: Sun Feb 10, 2013 7:46 am
Subject: Re: Using auto-format with LaTeX
mszamot@...
Send Email Send Email
 
On 12:19 Sat 09 Feb     , Zyad wrote:
> Hi,
>
> I'm finding the auto-format option very attractive (setl fo+=a), but I'm
having trouble getting it to work nicely when editing LaTeX documents.
>
> More specifically, I'd like to make it aware of LaTeX keywords so that, for
example, when writing the following,
>
> This is a paragraph that is properly
> formatted to have a textwidth of 40.
> 'auto-format' helps maintain it in a
> formatted form, even if I edit parts of
> it.
> \begin{equation}
> z^2 = x^2 + y^2
> \end{equation
>
> as soon as I enter '\', the cursor moves to the previous line. Is it possible
to have auto-format understand that a keyword like '\begin{' should not be
considered part of the paragraph before it? I'm aware of formatoptions' 'w'
flag, but it is inconvenient for me since the document is usually edited by
others.
>
> Thanks,
> Zyad

The problem is that vim the 'paragraphs' setting accepts only nroff
macros.  ATP (http://atp-vim.sf.net) defined a map gW which detects
paragraphs and formats them - it is still not what you (and me) wanted
but it a bit better.

Best,
Marcin

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136070 From: Eric Weir <eeweir@...>
Date: Sun Feb 10, 2013 10:15 am
Subject: Re: ios vim and plugins
eeweir@...
Send Email Send Email
 
On Feb 9, 2013, at 10:35 PM, David Sanson <dsanson@...> wrote:

> Oh! That's a neat idea: just use vimball to pack the whole structure of your
.vim folder into a single text file, and use it again to unpack on the iPad.
Does it work? I can't see why it wouldn't.

Haven't tried it, yet. As I understand the instructions it should be pretty
simple. Still wondering if it makes any difference that the files and folders
don't constitute a plugin. Also whether it's enough to list the folders or if
you have to list every file. E.g., could it simply /home/.vim?

--------------------------------------------------------------------------------
Eric Weir
Decatur, GA. USA

"The invincible shield of caring
is a weapon from the sky
against being dead."

– Tao Te Ching, 67

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136071 From: Marcin Szamotulski <mszamot@...>
Date: Sun Feb 10, 2013 10:56 am
Subject: Re: ios vim and plugins
mszamot@...
Send Email Send Email
 
On 05:15 Sun 10 Feb     , Eric Weir wrote:
>
> On Feb 9, 2013, at 10:35 PM, David Sanson <dsanson@...> wrote:
>
> > Oh! That's a neat idea: just use vimball to pack the whole structure of your
.vim folder into a single text file, and use it again to unpack on the iPad.
Does it work? I can't see why it wouldn't.
>
> Haven't tried it, yet. As I understand the instructions it should be pretty
simple. Still wondering if it makes any difference that the files and folders
don't constitute a plugin. Also whether it's enough to list the folders or if
you have to list every file. E.g., could it simply /home/.vim?
>
>
--------------------------------------------------------------------------------
> Eric Weir
> Decatur, GA. USA

To make a vimball you need to list every file in a single line.

Best,
Marcin

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136072 From: Xavier de Gaye <xdegaye@...>
Date: Sun Feb 10, 2013 12:14 pm
Subject: Re: [ANN] pyclewn release 1.10
xdegaye@...
Send Email Send Email
 
On Sat, Feb 9, 2013 at 8:31 PM, Xavier de Gaye wrote:
> Pyclewn 1.10 has been released at http://pyclewn.sourceforge.net/

The above url is broken due to a (temporary) problem at sourceforge.
Please use instead http://pyclewn.sourceforge.net/index.html
meanwhile.

--
Xavier

Les Chemins de Lokoti: http://lokoti.alwaysdata.net

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136073 From: Tony Mechelynck <antoine.mechelynck@...>
Date: Sun Feb 10, 2013 5:32 pm
Subject: Re: vim: display â<80><99>
antoine.mechelynck@...
Send Email Send Email
 
On 10/02/13 04:27, Ben Fritz wrote:
> On Saturday, February 9, 2013 8:51:28 PM UTC-6, ping wrote:
>> I've copied and pasted an article from web page and it looks I got a lot
>>
>> of following:
>>
>>
>>
>> �<80><99>
>>
>>
>>
>> so essentially it should be just a ' character, for example:
>>
>>
>>
>> If you�<80><99>ve
>>
>>
>>
>> is there a way to get them displayed/processed well?
>>
>>
>
> Figure out what encoding the text is supposed to be in, make sure your
'encoding' option can represent all the desired characters, and save/load the
file in the correct 'fileencoding'.
>
> :help 'encoding'
> :help 'fileencoding'
> :help 'fileencodings'
> :help multibyte
> http://vim.wikia.com/wiki/Working_with_Unicode
>
>

Yes, ping, it looks like your file is in UTF-8 but your Vim is
interpreting it in Latin1 (and by Latin1 I mean as defined by ISO under
standard ISO-8859-1, not the similar but just ever so slightly different
encoding called Windows-1252, or on Windows "code page 1252" and which
on Microsoft machines is often confused with Latin1):

Encoding  display (hex)           (description)
Latin1    â       0xE2            small Latin letter a with circumflex
            <80>    0x80            <control>
            <99>    0x99            <control>

UTF-8     ’       OxE2 0x80 0x99  U+2019 RIGHT SINGLE QUOTATION MARK

N.B. The two <control> characters are nonprinting (they have no display
equivalent in Latin1). They might be regarded as Alt-Ctrl-@ and
Alt-Ctrl-Y respectively.


So I recommend the same readings as Ben already did, especially the last
one.


Best regards,
Tony.
--
Don't worry about avoiding temptation -- as you grow older, it starts
avoiding you.
		 -- The Old Farmer's Almanac

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136074 From: Dominique Pellé <dominique.pelle@...>
Date: Sun Feb 10, 2013 6:11 pm
Subject: Re: vim: display â<80><99>
dominique.pelle@...
Send Email Send Email
 
ping <songpingemail@...> wrote:

> I've copied and pasted an article from web page and it looks I got a lot of
> following:
>
> â<80><99>
>
> so essentially it should be just a ' character, for example:
>
> If youâ<80><99>ve
>
> is there a way to get them displayed/processed well?
>
> thanks!
> regards
> ping


I have the same problem.  When I copy paste text
from Firefox into Vim running in a terminal (xfce or
xterm at least), I get garbage for diacritics.  If I do
the same in GVim (gtk2), it works fine.

Yet my settings in GVim and Vim (terminal) are
identical:

:set encoding?
   encoding=utf-8

:set fileencoding?
   fileencoding=

:set fileencodings=?
   fileencodings=ucs-bom,utf-8,latin1

I'm not 100% sure, but I think it used to work fine
a long time ago.

Example to reproduce:

1) go to http://fr.wikipedia.org/wiki/Vim in Firefox

2) select with the mouse the first sentence in
     Firefox which says:
     "Vim est un éditeur de texte, c’est-à-dire un
     logiciel permettant la manipulation de fichiers texte."

3) Paste in Vim (terminal) using the mouse (middle
    click on Linux)

4) observe that it pastes:

    Vim est un <e9>diteur de texte, c\u2019est-<e0>-dire un logiciel
permettant la manipulation de fichiers texte.

5) Do the same with gvim (gtk2) and observe that
     there is no bug in Gvim

I also tried with the Chromium browser (same result).

The problem has to do with copy paste which loses
the character encoding I think and somehow makes
assumes the wrong encoding when pasting.

Typing Unicode characters works fine in terminal.
Copy paste from gvim into Vim (terminal) works fine.

I'm using vim-7.3.806 on xubuntu-12.10, Linux x86_64.

Dominique

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136075 From: Tony Mechelynck <antoine.mechelynck@...>
Date: Sun Feb 10, 2013 7:34 pm
Subject: Re: vim: display â<80><99>
antoine.mechelynck@...
Send Email Send Email
 
On 10/02/13 19:11, Dominique Pellé wrote:
> ping <songpingemail@...> wrote:
>
>> I've copied and pasted an article from web page and it looks I got a lot of
>> following:
>>
>> â<80><99>
>>
>> so essentially it should be just a ' character, for example:
>>
>> If youâ<80><99>ve
>>
>> is there a way to get them displayed/processed well?
>>
>> thanks!
>> regards
>> ping
>
>
> I have the same problem.  When I copy paste text
> from Firefox into Vim running in a terminal (xfce or
> xterm at least), I get garbage for diacritics.  If I do
> the same in GVim (gtk2), it works fine.
>
> Yet my settings in GVim and Vim (terminal) are
> identical:
>
> :set encoding?
>    encoding=utf-8
>
> :set fileencoding?
>    fileencoding=
>
> :set fileencodings=?
>    fileencodings=ucs-bom,utf-8,latin1
>
> I'm not 100% sure, but I think it used to work fine
> a long time ago.
>
> Example to reproduce:
>
> 1) go to http://fr.wikipedia.org/wiki/Vim in Firefox
>
> 2) select with the mouse the first sentence in
>      Firefox which says:
>      "Vim est un éditeur de texte, c’est-à-dire un
>      logiciel permettant la manipulation de fichiers texte."
>
> 3) Paste in Vim (terminal) using the mouse (middle
>     click on Linux)
>
> 4) observe that it pastes:
>
>     Vim est un <e9>diteur de texte, c\u2019est-<e0>-dire un logiciel
> permettant la manipulation de fichiers texte.
>
> 5) Do the same with gvim (gtk2) and observe that
>      there is no bug in Gvim
>
> I also tried with the Chromium browser (same result).
>
> The problem has to do with copy paste which loses
> the character encoding I think and somehow makes
> assumes the wrong encoding when pasting.
>
> Typing Unicode characters works fine in terminal.
> Copy paste from gvim into Vim (terminal) works fine.
>
> I'm using vim-7.3.806 on xubuntu-12.10, Linux x86_64.
>
> Dominique
>

With me it pastes correctly at step 2; however my system locale in bash
(and therefore in the terminal) is en_US.UTF-8 (most specifically,
LC_CTYPE is unset but LANG is set to that value), so the konsole
terminal and Vim both know that strings are pasted in UTF-8. I also make
sure that 'encoding' is UTF-8 in my vimrc, more or less as described in
http://vim.wikia.com/wiki/Working_with_Unicode

Specifically, the line pasted in Console Vim is as follows:
Vim est un éditeur de texte, c’est-à-dire un logiciel permettant la
manipulation de fichiers texte.

I'm using vim 7.3.806 (own-compiled from Bram's sources), Huge build
running either in GUI or Console mode (for this test, as "vim" in a
console terminal), running on openSUSE 12.1 x86_64. The Vim build is
also 64-bit, as can be seen from the link log, where I get warning
messages starting with "skipping incompatible" for 32-bit libraries in
/usr/lib/


Best regards,
Tony.
--
Justice, n.:
	 A decision in your favor.

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136076 From: Dominique Pellé <dominique.pelle@...>
Date: Sun Feb 10, 2013 7:54 pm
Subject: Re: vim: display â<80><99>
dominique.pelle@...
Send Email Send Email
 
Tony Mechelynck <antoine.mechelynck@...> wrote:

> On 10/02/13 19:11, Dominique Pellé wrote:
>>
>> ping <songpingemail@...> wrote:
>>
>>> I've copied and pasted an article from web page and it looks I got a lot
>>> of
>>> following:
>>>
>>> â<80><99>
>>>
>>> so essentially it should be just a ' character, for example:
>>>
>>> If youâ<80><99>ve
>>>
>>> is there a way to get them displayed/processed well?
>>>
>>> thanks!
>>> regards
>>> ping
>>
>>
>>
>> I have the same problem.  When I copy paste text
>> from Firefox into Vim running in a terminal (xfce or
>> xterm at least), I get garbage for diacritics.  If I do
>> the same in GVim (gtk2), it works fine.
>>
>> Yet my settings in GVim and Vim (terminal) are
>> identical:
>>
>> :set encoding?
>>    encoding=utf-8
>>
>> :set fileencoding?
>>    fileencoding=
>>
>> :set fileencodings=?
>>    fileencodings=ucs-bom,utf-8,latin1
>>
>> I'm not 100% sure, but I think it used to work fine
>> a long time ago.
>>
>> Example to reproduce:
>>
>> 1) go to http://fr.wikipedia.org/wiki/Vim in Firefox
>>
>> 2) select with the mouse the first sentence in
>>      Firefox which says:
>>      "Vim est un éditeur de texte, c’est-à-dire un
>>      logiciel permettant la manipulation de fichiers texte."
>>
>> 3) Paste in Vim (terminal) using the mouse (middle
>>     click on Linux)
>>
>> 4) observe that it pastes:
>>
>>     Vim est un <e9>diteur de texte, c\u2019est-<e0>-dire un logiciel
>> permettant la manipulation de fichiers texte.
>>
>> 5) Do the same with gvim (gtk2) and observe that
>>      there is no bug in Gvim
>>
>> I also tried with the Chromium browser (same result).
>>
>> The problem has to do with copy paste which loses
>> the character encoding I think and somehow makes
>> assumes the wrong encoding when pasting.
>>
>> Typing Unicode characters works fine in terminal.
>> Copy paste from gvim into Vim (terminal) works fine.
>>
>> I'm using vim-7.3.806 on xubuntu-12.10, Linux x86_64.
>>
>> Dominique
>>
>
> With me it pastes correctly at step 2; however my system locale in bash (and
> therefore in the terminal) is en_US.UTF-8 (most specifically, LC_CTYPE is
> unset but LANG is set to that value), so the konsole terminal and Vim both


I use this locale:

$ locale
LANG=eo.UTF-8
LANGUAGE=eo:en_US:en
LC_CTYPE="eo.UTF-8"
LC_NUMERIC=en_US.UTF-8
LC_TIME=en_US.UTF-8
LC_COLLATE="eo.UTF-8"
LC_MONETARY=en_US.UTF-8
LC_MESSAGES="eo.UTF-8"
LC_PAPER=en_US.UTF-8
LC_NAME=en_US.UTF-8
LC_ADDRESS=en_US.UTF-8
LC_TELEPHONE=en_US.UTF-8
LC_MEASUREMENT=en_US.UTF-8
LC_IDENTIFICATION=en_US.UTF-8
LC_ALL=


But if I do  "export LANGUAGE=en_US.UTF-8"
before starting Vim, then it works!

So something is broken with the eo.UTF-8 locale
somehow (using xubuntu-12.10).

But what is strange is that the bug only affects Vim.
Trying to paste diacritics in the shell works.  It also
works fine with other text editors in the terminal. I tried
nano and emacs in terminal where it pasting worked
without problem even when using the eo.UTF-8 locale.

Regards
Dominique

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136077 From: Eric Weir <eeweir@...>
Date: Sun Feb 10, 2013 8:03 pm
Subject: Re: ios vim and plugins
eeweir@...
Send Email Send Email
 
On Feb 10, 2013, at 5:56 AM, Marcin Szamotulski wrote:

> To make a vimball you need to list every file in a single line.

Thanks, Marcin. And I take it with the full path.

--------------------------------------------------------------------------------\
----------
Eric Weir
Decatur, GA  USA
eeweir@...




--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136078 From: Dominique Pellé <dominique.pelle@...>
Date: Sun Feb 10, 2013 8:31 pm
Subject: Re: vim: display â<80><99>
dominique.pelle@...
Send Email Send Email
 
Dominique Pellé wrote:

> Tony Mechelynck <antoine.mechelynck@...> wrote:
>
>> On 10/02/13 19:11, Dominique Pellé wrote:
>>>
>>> ping <songpingemail@...> wrote:
>>>
>>>> I've copied and pasted an article from web page and it looks I got a lot
>>>> of
>>>> following:
>>>>
>>>> â<80><99>
>>>>
>>>> so essentially it should be just a ' character, for example:
>>>>
>>>> If youâ<80><99>ve
>>>>
>>>> is there a way to get them displayed/processed well?
>>>>
>>>> thanks!
>>>> regards
>>>> ping
>>>
>>>
>>>
>>> I have the same problem.  When I copy paste text
>>> from Firefox into Vim running in a terminal (xfce or
>>> xterm at least), I get garbage for diacritics.  If I do
>>> the same in GVim (gtk2), it works fine.
>>>
>>> Yet my settings in GVim and Vim (terminal) are
>>> identical:
>>>
>>> :set encoding?
>>>    encoding=utf-8
>>>
>>> :set fileencoding?
>>>    fileencoding=
>>>
>>> :set fileencodings=?
>>>    fileencodings=ucs-bom,utf-8,latin1
>>>
>>> I'm not 100% sure, but I think it used to work fine
>>> a long time ago.
>>>
>>> Example to reproduce:
>>>
>>> 1) go to http://fr.wikipedia.org/wiki/Vim in Firefox
>>>
>>> 2) select with the mouse the first sentence in
>>>      Firefox which says:
>>>      "Vim est un éditeur de texte, c’est-à-dire un
>>>      logiciel permettant la manipulation de fichiers texte."
>>>
>>> 3) Paste in Vim (terminal) using the mouse (middle
>>>     click on Linux)
>>>
>>> 4) observe that it pastes:
>>>
>>>     Vim est un <e9>diteur de texte, c\u2019est-<e0>-dire un logiciel
>>> permettant la manipulation de fichiers texte.
>>>
>>> 5) Do the same with gvim (gtk2) and observe that
>>>      there is no bug in Gvim
>>>
>>> I also tried with the Chromium browser (same result).
>>>
>>> The problem has to do with copy paste which loses
>>> the character encoding I think and somehow makes
>>> assumes the wrong encoding when pasting.
>>>
>>> Typing Unicode characters works fine in terminal.
>>> Copy paste from gvim into Vim (terminal) works fine.
>>>
>>> I'm using vim-7.3.806 on xubuntu-12.10, Linux x86_64.
>>>
>>> Dominique
>>>
>>
>> With me it pastes correctly at step 2; however my system locale in bash (and
>> therefore in the terminal) is en_US.UTF-8 (most specifically, LC_CTYPE is
>> unset but LANG is set to that value), so the konsole terminal and Vim both
>
>
> I use this locale:
>
> $ locale
> LANG=eo.UTF-8
> LANGUAGE=eo:en_US:en
> LC_CTYPE="eo.UTF-8"
> LC_NUMERIC=en_US.UTF-8
> LC_TIME=en_US.UTF-8
> LC_COLLATE="eo.UTF-8"
> LC_MONETARY=en_US.UTF-8
> LC_MESSAGES="eo.UTF-8"
> LC_PAPER=en_US.UTF-8
> LC_NAME=en_US.UTF-8
> LC_ADDRESS=en_US.UTF-8
> LC_TELEPHONE=en_US.UTF-8
> LC_MEASUREMENT=en_US.UTF-8
> LC_IDENTIFICATION=en_US.UTF-8
> LC_ALL=
>
>
> But if I do  "export LANGUAGE=en_US.UTF-8"
> before starting Vim, then it works!
>
> So something is broken with the eo.UTF-8 locale
> somehow (using xubuntu-12.10).
>
> But what is strange is that the bug only affects Vim.
> Trying to paste diacritics in the shell works.  It also
> works fine with other text editors in the terminal. I tried
> nano and emacs in terminal where it pasting worked
> without problem even when using the eo.UTF-8 locale.


Additional information: I just found that pasting by selecting
text in Firefox and dragging the selection into Vim (terminal)
works, whereas pasting with middle click does not work
(garbage for diacritics when using eo.UTF-8 locale i.e.
esperanto locale).  At least I have now a workaround
without having to change my locale to en_US.UTF-8.

Regards
Dominique

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136079 From: Eric Weir <eeweir@...>
Date: Mon Feb 11, 2013 12:18 am
Subject: Re: ios vim and plugins
eeweir@...
Send Email Send Email
 
On Feb 10, 2013, at 3:03 PM, Eric Weir wrote:

> On Feb 10, 2013, at 5:56 AM, Marcin Szamotulski wrote:
>
>> To make a vimball you need to list every file in a single line.
>
> Thanks, Marcin. And I take it with the full path.

It's not gonna be so easy. Even with a relatively small number of plugins,
there's a horrendous number of files to be listed. E.g., every one of my plugins
has a .git folder associated with it. The number of files in just one of those
is pretty big.

Or is there a way to get my system---mac or vim---to write the paths to a range
of files?

--------------------------------------------------------------------------------\
----------
Eric Weir
Decatur, GA  USA
eeweir@...




--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136080 From: Marcin Szamotulski <mszamot@...>
Date: Mon Feb 11, 2013 2:23 am
Subject: Re: ios vim and plugins
mszamot@...
Send Email Send Email
 
On 19:18 Sun 10 Feb     , Eric Weir wrote:
>
> On Feb 10, 2013, at 3:03 PM, Eric Weir wrote:
>
> > On Feb 10, 2013, at 5:56 AM, Marcin Szamotulski wrote:
> >
> >> To make a vimball you need to list every file in a single line.
> >
> > Thanks, Marcin. And I take it with the full path.
>
> It's not gonna be so easy. Even with a relatively small number of plugins,
there's a horrendous number of files to be listed. E.g., every one of my plugins
has a .git folder associated with it. The number of files in just one of those
is pretty big.
>
> Or is there a way to get my system---mac or vim---to write the paths to a
range of files?
>
>
--------------------------------------------------------------------------------\
----------
> Eric Weir
> Decatur, GA  USA
> eeweir@...

That's what for are scripting languages.  You can use bash, python, perl
or even VimL to do that.  With Vim you can do the following:

set nomore
redir @a
echo globpath('~/.vim', '**')
redir END

Now paste the register a into a new buffer and review the list.  It
should skip all the dot files (like .git, etc).

Best,
Marcin

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

#136081 From: Bee <forth@...>
Date: Mon Feb 11, 2013 6:20 am
Subject: Re: ios vim and plugins
forth@...
Send Email Send Email
 
On Feb 9, 10:50 am, Eric Weir <eew...@...> wrote:
> On Feb 8, 2013, at 10:46 PM, Bee wrote:
>
> > There is a version of vim for the ios (iphone, ipad).
>
> > It has a .vim directory, I can move files into it, but can not create
> > new directories.
>
> > Is it possible to use plugins without them being in the standard
> > 'plugin' directory?
>
> I'd like to get my vim setup I have on my macbook---the .vim folder with all
its subfolders and plugin folders---onto my ipad. I've been led to believe I can
use vimball for that purpose. Is that the case? All the instructions I've seen
so far assume it's a plugin that's being put into the vimball.
>
> Thanks,
>
--------------------------------------------------------------------------------\
----------
> Eric Weir
> eew...@...
>
> "The invincible shield of caring
> Is a weapon sent from the sky
> against being dead."
>
> - Tao Te Ching 67

I do not think that is possible on an ios device that is NOT
jailbroken.

As far as I can tell, Apple does NOT allow making new directories.

Bill

--
--
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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Messages 136052 - 136081 of 137733   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help