Windows vista alt key mapping

2009-08-08 Fir de Conversatie Ian00

This looks like a bug that I've worked around. I've noticed in windows
vista that mapping alt keys doesn't work in ~/.vimrc. Mapping after
vim loads works fine, and creating a separate file with the mappings
and then sourcing it from an autocommand works:

autocmd VimEnter * source ~/.vimbugfix

For reference, alt a-z in insert mode gives:
áâãäåæçèéêëìíîïðñòóôõö÷øùú

I get the same result with default settings, and no vimrc or gvimrc.

- Ian Kelling

--~--~-~--~~~---~--~~
You received this message from the vim_dev maillist.
For more information, visit http://www.vim.org/maillist.php
-~--~~~~--~~--~--~---



Re: what supported platforms would be lost of one killed vim's own mainloop in favor of glib

2009-08-08 Fir de Conversatie Lech Lorens

On 04-Aug-2009 RonnyPfannschmidt ronny.pfannschm...@gmail.com wrote:
 
 hi,
 
 just wondering what would be lost if vim's own mainloop was replaced
 by or at least properly integrated with the glib mainloop
 
 as it would help to integrate things like gio (direct ssh/http file
 access) and dbus
 
 also the current way to deal with gtk and its mainloop seems like a
 big hack that works around vim's mainloop being there first
 
 Regards Ronny

If you expect anyone to answer your question, I believe you should
elaborate a little bit on the subject. We are either too lazy (e.g. me)
or too busy to be able to dig into every hint of a subject that is
brought up on the list.
Would you mind explaining the possibilities, benefits, costs, risks of
using Glib?

-- 
Cheers,
Lech

--~--~-~--~~~---~--~~
You received this message from the vim_dev maillist.
For more information, visit http://www.vim.org/maillist.php
-~--~~~~--~~--~--~---



Re: Windows vista alt key mapping

2009-08-08 Fir de Conversatie Matt Wozniski

On Sat, Aug 8, 2009 at 4:49 AM, Ian00 wrote:

 This looks like a bug that I've worked around. I've noticed in windows
 vista that mapping alt keys doesn't work in ~/.vimrc. Mapping after
 vim loads works fine, and creating a separate file with the mappings
 and then sourcing it from an autocommand works:

        autocmd VimEnter * source ~/.vimbugfix

 For reference, alt a-z in insert mode gives:
 áâãäåæçèéêëìíîïðñòóôõö÷øùú

 I get the same result with default settings, and no vimrc or gvimrc.

 - Ian Kelling

Hm.  Don't have a windows machine to test with at the moment, care to
do some debugging?  What does set enc? fenc? fencs? print out if you
put it in _vimrc?  If you run that line manually?  If you put the maps
in _vimrc, what shows up for them in the output of the :map command?
My wild guess is that the encoding when the vimrc is being sourced
doesn't match the encoding you get once vim is started, and that's
causing vim to map one set of byte sequences for A-x in vimrc and
another set once vim has started.  If I'm right, you might be able to
fix it using either a scriptencoding in the vimrc (but probably
not), or by setting encoding in your vimrc.

~Matt

--~--~-~--~~~---~--~~
You received this message from the vim_dev maillist.
For more information, visit http://www.vim.org/maillist.php
-~--~~~~--~~--~--~---