Re: Bug report: display bug with accented characters and completion menu

2007-03-24 Thread Bram Moolenaar
Gombault Damien wrote: I noticed a display bug with the completion menu. If accented characters appears in the completion menu, some others characters from the edited file appears too in the menu ! It's quite difficult to explain so I've made some screenshots. You can also notice these

Re: Bug report: display bug with accented characters and completion menu

2007-03-24 Thread Gombault Damien
A few questions: - What is 'encoding' set to? - What is the actual text in the entries with problems? Give this byte-for-byte. You may need to insert an entry to find out. - Can you reproduce it by setting 'omnifunc' to a simple function that returns a fixed list of text entries? If

Re: Bug report: display bug with accented characters and completion menu

2007-03-24 Thread Gombault Damien
Another test with 3 files : 1.cpp : UTF-8 file with French accented characters. 2.cpp : the same file but with Latin-1 charset. 3.cpp : a file to test 'include' completion. Yes, it's a bit strange because it's not a great idea to work with different encodings. But it shows the problem.

Re: Bug report: display bug with accented characters and completion menu

2007-03-24 Thread Bram Moolenaar
Gombault Damien wrote: A few questions: - What is 'encoding' set to? - What is the actual text in the entries with problems? Give this byte-for-byte. You may need to insert an entry to find out. - Can you reproduce it by setting 'omnifunc' to a simple function that returns a

Re: Customizing vim: How to change the char before commands

2007-03-24 Thread John Little
FWIW Somebody suggested, and I use noremap ; : And Tony responded (in part): Your example of a semicolon? The search for the next f/F/t/T search on the line in the same direction as before command. I used to use ; for this fairly often, especially with vi, but since I mapped it to colon

Re: hosting wiki tips

2007-03-24 Thread Martin Krischik
Am Samstag 24 März 2007 schrieb Hari Krishna Dara: I know this came up during the recent discussions on using wiki for tips and it was ruled out. I don't remember exactly what the reason was and there are too many messages to go through, so I would like to pose this question again. I think

Re: Undo Levels Reset

2007-03-24 Thread Dimitar
* Vigil [EMAIL PROTECTED] [070323 22:20]: When a file is saved with :w, any changes in the undo history are lost and I can't undo things to get back to a state before I saved the file. It happens sometimes to me too. However I cannot reproduce it. Yours, Dimitar How can I prevent the

Re: hosting wiki tips

2007-03-24 Thread Bram Moolenaar
Martin Krischik wrote: Doesn't Vim have a SourceForge page? Because SF is currently beta testing Wikis [1]. Advantage here: We don't need to install anything. We just have to wait for the beta to end. The problem with SourceForge is that their uptime is not good. Last month the shell server

Re: hosting wiki tips

2007-03-24 Thread Andreas Bakurov
Martin Krischik wrote: Am Samstag 24 März 2007 schrieb Hari Krishna Dara: I know this came up during the recent discussions on using wiki for tips and it was ruled out. I don't remember exactly what the reason was and there are too many messages to go through, so I would like to pose this

Re: How to turn a q recording into a map?

2007-03-24 Thread Tobia
[EMAIL PROTECTED] wrote: Somehow it never occured to me that I could view and edit the contents of a recording. Of course, it's just a register, so I pasted the register; edited the contents; then yanked the lines back into the register... and naturally this worked fine. This is going to be

Re: IDE's Vim 7 and Apple OS X

2007-03-24 Thread Michael Henry
Joseph White wrote: While this works fine on Linux; Mac OS X Vim does not recognize or read the $Home/.vim directory, is there an alternate location to place the IDE files? On Windows it is the c:/program files/vim/plugin directory or something close to that. Can't figure what it might be

Re: How to turn a q recording into a map?

2007-03-24 Thread Tim Chase
Somehow it never occured to me that I could view and edit the contents of a recording. Of course, it's just a register, so I pasted the register; edited the contents; then yanked the lines back into the register... and naturally this worked fine. This is going to be immensely useful!

Re: hosting wiki tips

2007-03-24 Thread Martin Krischik
Am Samstag 24 März 2007 schrieb Bram Moolenaar: Martin Krischik wrote: Doesn't Vim have a SourceForge page? Because SF is currently beta testing Wikis [1]. Advantage here: We don't need to install anything. We just have to wait for the beta to end. The problem with SourceForge is that

Re: hosting wiki tips

2007-03-24 Thread Michael F. Lamb
Bram Moolenaar wrote: Martin Krischik wrote: Doesn't Vim have a SourceForge page? Because SF is currently beta testing Wikis [1]. Advantage here: We don't need to install anything. We just have to wait for the beta to end. I'd agree that a hosted solution is much nicer than one which some

Re: IDE's Vim 7 and Apple OS X

2007-03-24 Thread Brian McKee
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 24-Mar-07, at 8:35 AM, Michael Henry wrote: Joseph White wrote: While this works fine on Linux; Mac OS X Vim does not recognize or read the $Home/.vim directory, is there an alternate location to place the IDE files? On Windows it is the

Re: hosting wiki tips

2007-03-24 Thread Tobia
Michael F. Lamb wrote: I was not around for the previous discussion on this topic and I haven't sifted through the archives yet. Is the community consensus basically pro-wiki but contentious on an implementation / hosting choice? I'm new to this mailing list so I don't know either. In any

Re: hosting wiki tips

2007-03-24 Thread Martin Krischik
Am Samstag 24 März 2007 schrieb Michael F. Lamb: I was not around for the previous discussion on this topic and I haven't sifted through the archives yet. Is the community consensus basically pro-wiki but contentious on an implementation / hosting choice? Don't know - the discussion became

Re: Can you create file dependend fold markers

2007-03-24 Thread Eric Leenman
Tim thanks for your reply. See embedded how far I got. [...] Can you create your own (VHDL) fold markers? (not sure if the terminolgy is OK) For example I have VHDL-code like below: component bufg port ( o : out std_ulogic; i : in std_ulogic); end component; And when I'm at the first

specific lines SR question

2007-03-24 Thread Eric Leenman
Hi, In vhdl I create many times entity is like below: entity HALFADDER is port( A, B : in bit; SUM, CARRY: out bit); end entity HALFADDER; When I want to use this port into another bigger file (for example a full-adder ) I need in VHDL to create a component from it. This then looks like

Re: IDE's Vim 7 and Apple OS X

2007-03-24 Thread Robert Hicks
Joseph White wrote: Hi All, When you download c.vim : C/C++-IDE, BASH-IDE, or Perl-IDE, for example, the directions to install and get the menu items to show up, goes as follows: install details Copy the zip archive cvim.zip to $HOME/.vim/ and run unzip cvim.zip While this works fine

Re: specific lines SR question

2007-03-24 Thread Tobia
Eric Leenman wrote: entity HALFADDER is port( A, B : in bit; SUM, CARRY: out bit); end entity HALFADDER; component HALFADDER port( A, B : in bit; SUM, CARRY: out bit); end component; Is it then easy to replace the first and last line of these 5 lines of entity code to 5

Re: hosting wiki tips

2007-03-24 Thread Tom Purl
On Fri, March 23, 2007 11:42 pm, Hari Krishna Dara wrote: I know this came up during the recent discussions on using wiki for tips and it was ruled out. ... I came across this free hosting website called 110mb.com which has like 2gb of free space with no advertisements and no catches on

Re: hosting wiki tips

2007-03-24 Thread J. Erik Heinz
MoinMoin, Andreas Bakurov [EMAIL PROTECTED] words on 24.03.2007 - 13:36 (+0200 Zulu-Time): I propose MoinMoin system for wiki which is not beta (see SF wiki) and it is, possibly, the simplest wiki engine : easy to create, edit manage pages. I think it will become a primary reference

Re: Error In Documentation?

2007-03-24 Thread Vigil
On Fri, 23 Mar 2007, Bram Moolenaar wrote: in :help makeprg, I think the {$*} in the example ought to be ${*}. At least, it wouldn't work for me unless I did that. No, it's really $*. This is replaced by Vim before passing the command to the shell. $* and {$*} won't work in my ftplugin.

Re: pasting very long text at command-line

2007-03-24 Thread J. Erik Heinz
Hi, Hari Krishna Dara [EMAIL PROTECTED] words on 23.03.2007 - 14:19 (-0700 Zulu-Time): This happened to me always by mistake and what happened today was the worst. Forgetting that I have copied large amount of text into the clipboard, I tried to paste it at the search prompt using ^R*

Re: Undo Levels Reset

2007-03-24 Thread J. Erik Heinz
Hi, Dimitar [EMAIL PROTECTED] words on 24.03.2007 - 10:08 (+0100 Zulu-Time): * Vigil [EMAIL PROTECTED] [070323 22:20]: When a file is saved with :w, any changes in the undo history are lost and I can't undo things to get back to a state before I saved the file. It happens

Map Ctrl-Backspace to delete one word before cursor

2007-03-24 Thread Some user
Hello, I want to bind Ctrl-Backspace in insert mode to deleting the word before it just like Wordpad or Visual Studio (it actually gobbles up whitespace and deletes the word before the whitespace and places cursor at location where the first letter of the deleted word was). I tried something

Intellisense/Omni-complete for C/C++

2007-03-24 Thread Some user
Hello, I'm sorry for posting another message in such a short span of time, but the thing is that this is unrelated to the other question. I have Windows XP and gvim 7.0 on it. I like it so far, but the omni-complete functionality doesn't appeal that much to me compared to intellisense of Visual

Trouble with PDFView/LaTeX-Suite

2007-03-24 Thread Vijay Kaul
I was previously compiling my LaTeX in TeXShop, but I wanted to see what vim had to offer me. I must admit I like what I've found. In working around the primary hurdle (of Preview.app being lousy), I stubled accross PDFView.app. However, I'm having trouble getting it working like it's

Re: Help needed on pt_BR spell checking

2007-03-24 Thread Leonardo Fontenelle
Good and bad news from the pt dictionary. The good news is that I finally decided to distribute the spell checking file with the pt_PT dictionary from the Linguateca [1]. The bad news is that I still get region XX not supported. Please tell me what am I doing wrong: 1. Place

question about a python plugin

2007-03-24 Thread shawn bright
hey gents ! i found this screencast http://www.tuxed.de/vimpst/video.html does anyone know what plugin is being showed off here? thanks shawn

case-sens in completion on Mac OS X

2007-03-24 Thread Ricardo SIGNES
I am running Vim 7.0.218, the latest build from macvim.org. I run the vim binary from inside the app bundle at the console to get my terminal vim. My filesystem is case-sensitive HFS+, but vim's filename completion acts case-insensitive. This is driving me CRAZY. If I have lib and LICENSE in