Re: How to input character 'ƒ' (U+0192)

2016-10-10 Thread Tony Mechelynck
On Sat, Oct 8, 2016 at 9:29 PM, Steve  wrote:
> Hi Linda,
>
> diphraphs are what you are looking for.
>
> Type :h digraphs or simply :digraphs for a comprehensive list.
>
> for some usefull information.
>
> I would type km3 to get ϝ.
>
> Steve

See also :help i_CTRL-V_digit

However, if (as is recommended) you set 'encoding' to "utf-8", you
have to use the proper Unicode codepoint. The florin symbol is not 192
decimal but 192 hex, and as you said, it is known by Unicode as
"U+0192 LATIN SMALL LETTER F WITH HOOK [...] = Florin currency symbol
(Netherlands) [...]"

So you could enter it as Ctrl-V followed by u0192. This works for all
Unicode codepoints in the BMP (basic multilingual pane), i.e. U+
to U+ (some of these, however, do not represent a character, and
for those which your keyboard knows about there is of course an easier
way). (Actually, in Vim, codepoint zero is represented internally as
0x10, the linefeed code; to enter an actual linefeed in a file you
have to break the line).

Best regards,
Tony.

-- 
-- 
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/d/optout.


Re: Windows nightly builds issues

2016-10-10 Thread Ritmo2k
Hi Ben,
It looks like the x64 build gets compiled with two gvimext libraries, one for 
each arch where the x64 version is appended with a 64 (gvimext64.dll). However 
the installer is unaware of this and creates the following example reg entry:

[HKEY_CLASSES_ROOT\CLSID\{51EEE242-AD87-11d3-9C1E-0090278BBD99}\InProcServer32]
@="C:\\Program Files\\vim\\vim80\\gvimext\\gvimext.dll"
"ThreadingModel"="Apartment"

That leaves the extension non functional.

Thanks,
jlc

-- 
-- 
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/d/optout.


Re: vim8 can't be set as default program in win7 pro

2016-10-10 Thread dfab1954
On Monday, October 10, 2016 at 11:00:28 AM UTC-4, skeept wrote:
> > 
> > Is this working for anyone?   
> > 
> > I had to re-install gvim7.4 and use that as the default program.
> 
> 
> I had exactly the same problem. I followed the instructions in the first 
> answer in this link to solve the issue. It works for me now.
> 
> http://superuser.com/questions/655600/i-cant-set-a-program-as-the-default-to-open-a-filetype-with-in-windows-7
> 
> Have to correct some registry key as it was still set with some vim74 path 
> (not updated by new installer).
> 
> Hope that helps,
> Jorge

Thanks.  That does look like the problem.  I have to get my IT guy to change 
the registry values.  

-- 
-- 
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/d/optout.


Re: How gVIM can handle UTF like notepad

2016-10-10 Thread Ben Fritz
On Monday, October 10, 2016 at 10:33:26 AM UTC-5, Erhy wrote:
> Hello,
> for administer Windows I would like to use gVIM.
> But there are some UTF encoded files.
> Opening such files gVim decoded them and save the without BOMB.
> Are there setting to have the same behavior as Windows notepad?
> Thank you for tips
> Erhy

I guess, you're asking how to save the file with a BOM? For that, ":set bomb" 
before saving will do the trick.

To detect this automatically, be sure that you have "set encoding=utf-8", 
"setglobal bomb", and "set fileencodings=ucs-bomb,utf-8,latin1" or similar in 
your .vimrc.

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


Re: Windows nightly builds issues

2016-10-10 Thread Ben Fritz
If it's a real bug, and not a question/support request, then either the main 
Vim project repository (https://github.com/vim/vim/issues) or the vim_dev 
mailing list (https://groups.google.com/forum/#!forum/vim_dev).

If it's a question or support request, or if you're not sure what you're seeing 
is a bug, then use the vim_use mailing list 
(https://groups.google.com/forum/#!forum/vim_use).

-- 
-- 
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/d/optout.


How gVIM can handle UTF like notepad

2016-10-10 Thread Erhy
Hello,
for administer Windows I would like to use gVIM.
But there are some UTF encoded files.
Opening such files gVim decoded them and save the without BOMB.
Are there setting to have the same behavior as Windows notepad?
Thank you for tips
Erhy

-- 
-- 
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/d/optout.


Re: vim8 can't be set as default program in win7 pro

2016-10-10 Thread skeept

> 
> Is this working for anyone?   
> 
> I had to re-install gvim7.4 and use that as the default program.


I had exactly the same problem. I followed the instructions in the first answer 
in this link to solve the issue. It works for me now.

http://superuser.com/questions/655600/i-cant-set-a-program-as-the-default-to-open-a-filetype-with-in-windows-7

Have to correct some registry key as it was still set with some vim74 path (not 
updated by new installer).

Hope that helps,
Jorge

-- 
-- 
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/d/optout.


Re: vim8 can't be set as default program in win7 pro

2016-10-10 Thread dfab1954
> >> Typically you must "Browse" to the executable the first time.
> >> There after, Vim (8) should be in the list of options in the future.
> >> 
> >
> > I did that.  It doesn't show up in the dialog and browsing and selecting 
> > the executable.  Does it work for you?
> >   
> ---
> You rt-clicked and chose "Open with..." 
> (OR), on the action bar right above the file listing
> (sometimes below file menu), where it
> displays "Organize ▾  Open ▾  E-mail   Burn  New folder",
> click on the down-triangle next to "Open", and
> "Choose default program..." there.
> 
> And that opens a popup, where you clicked Browse? And then you
> browsed to the place where you installed vim8 (Usually
> under "/Program Files/Vim/vim80/Gvim.exe" for native vim, or
> "/Program Files (x86)/Vim/vim80/Gvim.exe" for 32-bit vim on a 64-bit 
> platform)?
> 
> You then clicked on the Gvim.exe file and it didn't open it with 
> that file?

After selecting the program as you said above, it should be shown in the "Open 
with" dialog but it is not.

Is this working for anyone?   

I had to re-install gvim7.4 and use that as the default program.
 


-- 
-- 
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/d/optout.


Windows nightly builds issues

2016-10-10 Thread Ritmo2k
I wanted to file some issues for the Windows nightly builds however the Github 
issues tab is disabled. Where is the correct place for doing this?

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


Re: Vim 8 in edit mode constrains editing and cursor motion - how to disable?

2016-10-10 Thread Ivan Vecerina
On Wednesday, October 5, 2016 at 4:39:27 PM UTC+2, Christian Brabandt wrote:
> Hi Ivan!
> 
> On Mi, 05 Okt 2016, Ivan Vecerina wrote:
> 
> > Hi,
> > Since I upgraded to Vim 8, I am confronted with a new behavior that I find 
> > annoying:
> > 
> > According to how I enter insert mode, I am restricted in terms of what I 
> > can edit.
> > For instance, if I want to remove the last character of a line, I would 
> > type:
> >  A  
> > But now, after I enter edit mode with A, I am only able to append text to 
> > the end of the line.
> > 
> > How can I disable this constraining of the editable range in insert mode?
> 
> I am not sure, why this happens for you. Please check the output of 
> `:verbose :set bs?`
> 
> To fix it, you most likely want something like `:set bs=2` in your 
> .vimrc. Read the help at :h 'bs'
> 
> 
> Best,
> Christian
> -- 
> Wie glücklich viele Menschen wären, wenn sie sich genausowenig um die
> Angelegenheiten anderer kümmern würden wie um die eigenen.
>   -- Georg Christoph Lichtenberg

Indeed - 'backspace' it was.
I added an assignment to it in my vimrc file and all is well.
Many thanks to you (and Ben),
Ivan

-- 
-- 
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/d/optout.