Re: Copy and paste Spanish from google translate into vim?

2013-05-09 Thread Dominique Pellé
Daniel healthdatawareho...@gmail.com wrote:

 Hi,

 I would be very thankful if someone could tell me how to set things up so I 
 can copy and paste
 Spanish text from google translate into vim? I am sure there is some very 
 simple way to do this,
 but I can't see it.

Copy/paste from Firefox into Vim does not work for me either for
non ASCII characters if I use the middle click to paste in Vim (terminal)
on Linux. It copies text, but messes up accents. I think that Vim puts
a latin1 string and then interprets it as utf-8 so it looks messed up.
Taking your example, if I copy/paste síntoma from Firefox with the
mouse, I see in Vim (terminal)  sedntoma . ed being in Latin1:

   355   237   ED í LATIN SMALL LETTER I WITH ACUTE

However, it works if I select the text in Firefox and drag it into the
terminal. Copy/paste also work with middle click in gvim.

I just realized now that copy paste actually works when I use
vim -u NONE.  So by trial and error, I searched for the minimalistic
.vimrc that can reproduce the problem.  I can reproduce the
copy/paste bug as follows:

1/  create a minimalistic ~/.vimrc file:

$ cat ~/.vimrc
set enc=utf8
language eo.UTF-8
set mouse=a

2/ Start vim with:

$ vim --noplugin

3/ Copy a word with accents in Firefox such as síntoma
and paste it in Vim (terminal) with middle click.

4/ Observe the bug Vim pastes:  sedntoma
Expected behavior was to paste síntoma
Note also that dragging the selection from Firefox
to Vim pastes correctly.

Interestingly, bug happens with the eo.UTF8 language
but not with the fr_FR.UTF8 language for example.

You may need to install the eo.UTF8 locale in order to reproduce
the bug with sudo locale-gen eo.UTF8 as described here
for Ubuntu:

http://markushedlund.com/dev-tech/install-a-locale-on-ubuntu-11-10

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




Re: Copy and paste Spanish from google translate into vim?

2013-05-09 Thread Christian Brabandt
Hi Dominique!

On Do, 09 Mai 2013, Dominique Pellé wrote:

 Copy/paste from Firefox into Vim does not work for me either for
 non ASCII characters if I use the middle click to paste in Vim (terminal)
 on Linux. It copies text, but messes up accents. I think that Vim puts
 a latin1 string and then interprets it as utf-8 so it looks messed up.
 Taking your example, if I copy/paste síntoma from Firefox with the
 mouse, I see in Vim (terminal)  sedntoma . ed being in Latin1:
 
355   237   ED í LATIN SMALL LETTER I WITH ACUTE
 
 However, it works if I select the text in Firefox and drag it into the
 terminal. Copy/paste also work with middle click in gvim.
 
 I just realized now that copy paste actually works when I use
 vim -u NONE.  So by trial and error, I searched for the minimalistic
 .vimrc that can reproduce the problem.  I can reproduce the
 copy/paste bug as follows:
 
 1/  create a minimalistic ~/.vimrc file:
 
 $ cat ~/.vimrc
 set enc=utf8
 language eo.UTF-8
 set mouse=a
 
 2/ Start vim with:
 
 $ vim --noplugin
 
 3/ Copy a word with accents in Firefox such as síntoma
 and paste it in Vim (terminal) with middle click.
 
 4/ Observe the bug Vim pastes:  sedntoma
 Expected behavior was to paste síntoma
 Note also that dragging the selection from Firefox
 to Vim pastes correctly.
 
 Interestingly, bug happens with the eo.UTF8 language
 but not with the fr_FR.UTF8 language for example.
 
 You may need to install the eo.UTF8 locale in order to reproduce
 the bug with sudo locale-gen eo.UTF8 as described here
 for Ubuntu:
 
 http://markushedlund.com/dev-tech/install-a-locale-on-ubuntu-11-10

Interesting. I don't see this behaviour here.

regards,
Christian
-- 
Mancher lehnt eine gute Idee bloß deshalb ab, weil sie nicht von ihm
ist.
-- Luis Bunuel

-- 
-- 
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/groups/opt_out.




Re: Plans for Vim 7.4

2013-05-09 Thread Christian Brabandt
Hi Ron!

On Mi, 08 Mai 2013, Ron Aaron wrote:

  2. add integration with Python instead of inventing more Vim script
 
 I hope this doesn't mean Python will be *required*.  That would be a badness.

Pretty sure not. I think the python interpreter will always be optional.

regards,
Christian
-- 
Wie viel Unsinn ist im Laufe der Zeit von Professoren gesagt worden!
Warum sollen Studenten nicht auch einmal dummes Zeug reden.
-- Alexander Mitscherlich

-- 
-- 
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/groups/opt_out.




Re: Plans for Vim 7.4

2013-05-09 Thread Alice Wonder
On Thu, 2013-05-09 at 13:20 +0200, Christian Brabandt wrote:
 Hi Ron!
 
 On Mi, 08 Mai 2013, Ron Aaron wrote:
 
   2. add integration with Python instead of inventing more Vim script
  
  I hope this doesn't mean Python will be *required*.  That would be a 
  badness.
 
 Pretty sure not. I think the python interpreter will always be optional.
 
 regards,
 Christian

I'm not a VIM developer but there are many components to VIM that are
only built if configure detects them (and they aren't specifically
turned off by a switch), certainly any python bindings would be done the
same way. Pretty standard for FOSS in general that has python bindings
to make those bindings optional.


-- 
-- 
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/groups/opt_out.




Re: Plans for Vim 7.4

2013-05-09 Thread Christian Brabandt
Hi Bram!

On Do, 09 Mai 2013, Bram Moolenaar wrote:

 
 Hello Vim users,
 
 We are now at patch level 7.3.931. In a few weeks we would reach 999.  I
 don't want to find out what happens if we go over that, so it's time for
 Vim 7.4!
 
 The top five of the voting list:
 http://www.vim.org/sponsor/vote_results.php
 
 1. add IDE features
 2. add integration with Python instead of inventing more Vim script
 3. fix all problems, big and small; make Vim more robust
 4. improve syntax highlighting speed
 5. add collaborative editing
 
 I can't possibly do all of that in a few weeks, but this is what I can do:
 
 1. Include the Python patches that ZyX has created.  This improves the
Vim API from the Python interface.
 2. Include the fast regexp engine patch that has been floating around
for a long time. With some clever logic to fall back to the old
regexp engine for patterns that might not work with the new one.
 3. Include lots of pending patches for bug fixes.

I'd like to see the breakindent patch included.

regards,
Christian

-- 
-- 
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/groups/opt_out.




Re: Copy and paste Spanish from google translate into vim?

2013-05-09 Thread Dominique Pellé
Christian Brabandt cbli...@256bit.org wrote:

 Hi Dominique!

 On Do, 09 Mai 2013, Dominique Pellé wrote:

...snip...
 I just realized now that copy paste actually works when I use
 vim -u NONE.  So by trial and error, I searched for the minimalistic
 .vimrc that can reproduce the problem.  I can reproduce the
 copy/paste bug as follows:

 1/  create a minimalistic ~/.vimrc file:

 $ cat ~/.vimrc
 set enc=utf8
 language eo.UTF-8
 set mouse=a

 2/ Start vim with:

 $ vim --noplugin

 3/ Copy a word with accents in Firefox such as síntoma
 and paste it in Vim (terminal) with middle click.

 4/ Observe the bug Vim pastes:  sedntoma
 Expected behavior was to paste síntoma
 Note also that dragging the selection from Firefox
 to Vim pastes correctly.

 Interestingly, bug happens with the eo.UTF8 language
 but not with the fr_FR.UTF8 language for example.

 You may need to install the eo.UTF8 locale in order to reproduce
 the bug with sudo locale-gen eo.UTF8 as described here
 for Ubuntu:

 http://markushedlund.com/dev-tech/install-a-locale-on-ubuntu-11-10

 Interesting. I don't see this behaviour here.

 regards,
 Christian

OK.  Do you have the eo.UTF8 locale?  I can reproduce it on 2 different
Linux x86_64 machines (xubuntu-12.04 and xubuntu-12.10).  It might be
a problem with the eo.UTF8 locale rather than Vim.

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




Re: Plans for Vim 7.4

2013-05-09 Thread Alice Wonder
On Thu, 2013-05-09 at 05:51 +0200, Bram Moolenaar wrote:
 Hello Vim users,
 
 We are now at patch level 7.3.931. In a few weeks we would reach 999.  I
 don't want to find out what happens if we go over that, so it's time for
 Vim 7.4!

Forgive me if this is already addressed in a patch, I'm pretty much
running a virgin 7.3 - I was planning to look through the patches at
some point and make my own patch if I didn't find it.

The color syntax for rpm spec files does not add color to the %check
part of a spec file. It should be colored the same way as %prep %build %
install %files etc. - my guess is a very easy thing to do.


-- 
-- 
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/groups/opt_out.




Re: Copy and paste Spanish from google translate into vim?

2013-05-09 Thread glts
On Thursday, May 9, 2013 2:10:23 PM UTC+2, Dominique Pelle wrote:
 OK.  Do you have the eo.UTF8 locale?  I can reproduce it on 2
 different Linux x86_64 machines (xubuntu-12.04 and xubuntu-12.10).  It
 might be a problem with the eo.UTF8 locale rather than Vim.

I'm not sure whether this is relevant, but the ISO language code for
Spanish is es, not eo.

eo is the language code for Esperanto, which is supported by far fewer
systems. Maybe what you've discovered is a flaw in the Esperanto locale.

-- 
-- 
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/groups/opt_out.




Re: Plans for Vim 7.4

2013-05-09 Thread ZyX
 1. Include the Python patches that ZyX has created.  This improves the
Vim API from the Python interface.

I just wanted to write an RFC with new interfaces. These are even bigger 
changes, so it would be bad idea to start writing them without discussion. But 
these are unlikely to be written before the end of May.

-- 
-- 
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/groups/opt_out.




Re: delete last character of multiple lines

2013-05-09 Thread James

On May 8, 10:01 am, yoni kessler yoni101kess...@gmail.com wrote:

 I tried to delete the last character of multiple lines in the following way:

Hi Yoni,

I'm not a regex expert.  I usually do that sort of thing with a macro.

qq // start recording macro 'q'
$   // move cursor to end of current line
x   // delete character
j// move down to next line
q   // stop recording macro

Now you can delete the last character of ten lines starting at the
line containing the cursor with the following command.

10@q

James

-- 
-- 
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/groups/opt_out.




Re: Removing junk .swp files

2013-05-09 Thread Adrian Luff
Assuming you have the following in your .vimrc:
 set directory=$HOME/.vim/swap


You can easily use find and metadata from the file system to remove files that 
have not been accessed in more than 30 days:

 find ~/.vim/swap -type f -atime +30 -name \*.sw? -exec rm -f {} \;


Using xargs doesn't correctly handle files with spaces in their name by default 
in my environment. I'm not sure of the portability of fixes for this so I stuck 
with -exec.

-Adrian

On May 8, 2013, at 10:05 AM, Gary Johnson garyj...@spocom.com wrote:

 On 2013-05-08, Paul wrote:
 On Wednesday, 01 May, 2013 at 20:11:08 BST, 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
 
 I don't recommend this, because like George Dinwiddie says, it
 doesn't check to see if any swap files are in use, but this is a
 more efficient command:
 
find ~ -type f -name \*.swp -delete
 
 Also, not all swap files end in .swp.  If Vim needs to create a swap
 file and one ending in .swp already exists, Vim will use the
 extension .swo for the new one and .swn after that.  I think it just
 continues backwards through the alphabet.  So using something like
 
\*.sw[nop]
 
 or even
 
\*.sw?
 
 would be more thorough.
 
 Regards,
 Gary
 
 -- 
 -- 
 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/groups/opt_out.
 
 



smime.p7s
Description: S/MIME cryptographic signature


Re: Plans for Vim 7.4

2013-05-09 Thread Charles Campbell

Bram Moolenaar wrote:

Besides that, if you are maintaining runtime files, please send me any
pending updates.  I will not make big changes just before the release,
everything needs some time for testing.  Let's set a deadline at the end
of May.


Hello, Bram!

Just to let you know to expect another netrw release.  I've got a final 
exam to give and grade over the next few days and then I've got some, 
hopefully small, work to do for netrw.  I hope to have it done after 
Wednesday of next week.


Regards,
Chip Campbell

--
--
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/groups/opt_out.




Re: Plans for Vim 7.4

2013-05-09 Thread Charles Campbell

Alice Wonder wrote:

On Thu, 2013-05-09 at 05:51 +0200, Bram Moolenaar wrote:

Hello Vim users,

We are now at patch level 7.3.931. In a few weeks we would reach 999.  I
don't want to find out what happens if we go over that, so it's time for
Vim 7.4!

Forgive me if this is already addressed in a patch, I'm pretty much
running a virgin 7.3 - I was planning to look through the patches at
some point and make my own patch if I didn't find it.

The color syntax for rpm spec files does not add color to the %check
part of a spec file. It should be colored the same way as %prep %build %
install %files etc. - my guess is a very easy thing to do.

* Read the top of the spec syntax highlighting file in your 
/usr/local/vim/vim73/syntax/spec.vim .

* Send a note to the maintainer.

Regards,
C Campbell

--
--
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/groups/opt_out.




Re: Plans for Vim 7.4

2013-05-09 Thread lith
 I'd like to see the breakindent patch included.

Yes, please!

-- 
-- 
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/groups/opt_out.




increment list

2013-05-09 Thread shawn wilson
Quite often I've got a list, either:

1 - do this first
2 - do this next
3 - go home

or
/^
([0-3][0-9])-  # 0 Day
([A-Z][a-z][a-z])- # 1 Month
([0-9]{4})# 2 Year
/x;

And I alter something and need to change the list. I can make a macro
where I 'j0cw' or 'f#wcw' but then how do I make the incrementing
work?

-- 
-- 
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/groups/opt_out.




Re: increment list

2013-05-09 Thread Charles Campbell

shawn wilson wrote:

Quite often I've got a list, either:

1 - do this first
2 - do this next
3 - go home

or
/^
([0-3][0-9])-  # 0 Day
([A-Z][a-z][a-z])- # 1 Month
([0-9]{4})# 2 Year
/x;

And I alter something and need to change the list. I can make a macro
where I 'j0cw' or 'f#wcw' but then how do I make the incrementing
work?


I believe that visincr will do what you want; you can get visincr from:

http://www.drchip.org/astronaut/vim/index.html#VISINCR (cutting edge)
http://vim.sf.net/scripts/script.php?script_id=670  (stable)

Quick Overview:

   :I[#]   left justified incremented list
   :II   [# [zfill]]   right justified incremented list
   :IO   [#]   left justified octal incremented list
   :IIO  [# [zfill]]   right justified octal incremented list
   :IX   [#]   left justified hex. incremented lsit
   :IIX  [# [zfill]]   right justified hex. incremented lsit
   :IYMD [# [zfill]]   year/month/day incremented list
   :IMDY [# [zfill]]   month/day/year incremented list
   :IDMY [# [zfill]]   day/month/year incremented list
   :IA   [#]   alphameric incremented list
   :ID   [#]   dayname incremented list
   :IM   [#]   monthname incremented list

Installation: if you're using vim 7.2 or 7.3,

   vim visincr.vba.gz
   :so %
   :q

Regards,
C Campbell

--
--
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/groups/opt_out.




Re: increment list

2013-05-09 Thread Paul Isambert
 Quite often I've got a list, either:
 
 1 - do this first
 2 - do this next
 3 - go home
 
 or
 /^
 ([0-3][0-9])-  # 0 Day
 ([A-Z][a-z][a-z])- # 1 Month
 ([0-9]{4})# 2 Year
 /x;
 
 And I alter something and need to change the list. I can make a macro
 where I 'j0cw' or 'f#wcw' but then how do I make the incrementing
 work?

You can try defining a function like this:

function! Increment (...) range
  let i = a:firstline
  let pattern = a:0 ? a:1 : '\d\+'
  while i = a:lastline
call setline(i, substitute(getline(i), pattern, '\=submatch(0)+1', ''))
let i += 1
  endwhile
endfunction

Then you can call Increment on a range and it will increment all numbers 
matching the given pattern (or the first encountered number if no pattern is 
given). For instance, the first lists could be incremented with

:','call Increment()

(in Visual mode) and the second with

:','call Increment('#\s*\zs\d\+')

(Don't forget `\zs'!)

That was just off my head, though, and simpler solutions may exist.

Best,
Paul

-- 
-- 
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/groups/opt_out.




Re: increment list

2013-05-09 Thread shawn wilson
Thanks y'all. I'm not sure which I like better. (probably the simple
function though)

-- 
-- 
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/groups/opt_out.




OutlookVim 8 and Outlook 2007: Please install the plugin OutlookVim from www.vim.org to continue

2013-05-09 Thread Gary Johnson
I just downloaded and installed OutlookVim version 8 for use with
Outlook 2007 running on a Windows XP system.  I followed the
instructions for installing the macro to step 12, the last sub-step
for Outlook 2007:  Click on the new button in the Quick Access
Toolbar.  The result is a pop-up window titled Microsoft Office
Outlook and containing the message:

OutlookVim: Please install the plugin OutlookVim from
www.vim.org to continue

I found that this message is displayed by OutlookVim.bas if

exists('g:loaded_outlook')

is false.  But, I can open gvim from its Desktop icon, execute
that command and see that it returns 1.

I found the Wiki page that discusses this error. It suggests that
the files are installed in the wrong locations.  Mine are here:

~/vimfiles/plugin/OutlookVim.bas
~/vimfiles/plugin/outlook.vim
~/vimfiles/plugin/outlookvim.js

I tried putting outlook.vim in C:\Program Files\vim\vimfiles\plugin
in case gvim couldn't find my $HOME.  No difference.

I am running Vim 7.3.762.

What can I do to fix this or to troubleshoot it?

Regards,
Gary

-- 
-- 
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/groups/opt_out.




Re: OutlookVim 8 and Outlook 2007: Please install the plugin OutlookVim from www.vim.org to continue -- SOLVED

2013-05-09 Thread Gary Johnson
On 2013-05-09, Gary Johnson wrote:
 I just downloaded and installed OutlookVim version 8 for use with
 Outlook 2007 running on a Windows XP system.  I followed the
 instructions for installing the macro to step 12, the last sub-step
 for Outlook 2007:  Click on the new button in the Quick Access
 Toolbar.  The result is a pop-up window titled Microsoft Office
 Outlook and containing the message:
 
 OutlookVim: Please install the plugin OutlookVim from
 www.vim.org to continue
 
 I found that this message is displayed by OutlookVim.bas if
 
 exists('g:loaded_outlook')
 
 is false.  But, I can open gvim from its Desktop icon, execute
 that command and see that it returns 1.
 
 I found the Wiki page that discusses this error. It suggests that
 the files are installed in the wrong locations.  Mine are here:
 
 ~/vimfiles/plugin/OutlookVim.bas
 ~/vimfiles/plugin/outlook.vim
 ~/vimfiles/plugin/outlookvim.js
 
 I tried putting outlook.vim in C:\Program Files\vim\vimfiles\plugin
 in case gvim couldn't find my $HOME.  No difference.
 
 I am running Vim 7.3.762.
 
 What can I do to fix this or to troubleshoot it?

I started looking more closely at the Visual Basic code, not that I
know anything about Visual Basic, and saw that it had to have found
an instance of gvim running but that that gvim instance had not
loaded the outlookvim.vim file.

Then it dawned on me that I always have an instance of gvim running
on that machine for keeping notes.  That instance had been running
since before I installed the outlookvim.vim plugin, so if
OutlookVim.bas was asking _that_ instance if it had
g:loaded_outlook, the answer would be no.

I exited that gvim instance, made sure no others were running, and
tried again.  Voilà!

Sorry for the noise, but maybe this will help someone else.

Regards,
Gary

-- 
-- 
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/groups/opt_out.




Re: Plans for Vim 7.4

2013-05-09 Thread Andy Spencer
On 2013-05-09 05:51, Bram Moolenaar wrote:
 Hello Vim users,
 
 We are now at patch level 7.3.931. In a few weeks we would reach 999.  I
 don't want to find out what happens if we go over that, so it's time for
 Vim 7.4!

How about the gvim port to GTK 3? I'll see if I can get that working if
there's a chance it'll be merged.

-- 
-- 
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/groups/opt_out.