how to change ctags defaults?

2010-08-08 Thread Jeri Raye
Hi I have trouble to change the default output of ctag (version 5.8) for VHDL With ctags --list-kinds=vhdl it gives the parameters. It gives amongst others C as a parameter This gives Component Declarations. When I do: ctags -R vhdl-kinds=[+C] --extra=+q . And check the tags file it doesn't

Re: Translate sentences inside vim using google translator?

2010-08-08 Thread Bram Moolenaar
Someone wrote: Solved, I have installed other script: TranslateEnToCn http://www.vim.org/scripts/script.php?script_id=2996 And works perfect Interesting. I can't read Chinese though. Would be nice to make it possible to set the from/to languages. And handle Visual mode better. -- How

Re: Vim 7.3d ready for beta testing

2010-08-08 Thread Bram Moolenaar
Tony Mechelynck wrote: On 07/08/10 21:02, Dominique Pell=C3=A9 wrote: [...] Hi Tony How about putting somewhere 2 screenshots: - screenshot of Vim with wrong behavior - screenshot of Vim (or other application) with expected behavior It would make it simpler to understand the

Re: show which field I am on in vim

2010-08-08 Thread Benjamin R. Haskell
On Sat, 6 Aug 2010, Jim Green wrote: I used to count one by one which field I am on in order to use awk to print this field. do we have a quick way to do this in vim? The functions I just wrote in the attached script might be helpful. To install, place it in your ~/.vim/autoload/ directory

Re: Vim 7.3d ready for beta testing

2010-08-08 Thread Tony Mechelynck
On 08/08/10 14:42, Bram Moolenaar wrote: Tony Mechelynck wrote: On 07/08/10 21:02, Dominique Pell=C3=A9 wrote: [...] Hi Tony How about putting somewhere 2 screenshots: - screenshot of Vim with wrong behavior - screenshot of Vim (or other application) with expected behavior It would make it

[ANN] pyclewn release 1.3

2010-08-08 Thread Xavier de Gaye
Pyclewn 1.3 has been released at http://pyclewn.sourceforge.net/ Pyclewn is a python program that allows the use of vim as a front end to gdb. This is mainly a bug fix release. Note that starting with vim 7.3, pyclewn can now be started from within vim and can run in vim in a terminal. -- You

my vim doesn't display certain layout properly...

2010-08-08 Thread aksr
i'm using vim 7.2 on win xp.. this problem is on my laptop and on PC. i can't display serbian(latin or cyrilic) or any other language besides the english, german,.. it display black squares instead of č,ć,š,đ,ž.. and for greek symbols, question marks i hava installated english serbian(cyrilic and

Can I rely on purging locks by deepcopy function?

2010-08-08 Thread ZyX
Consider the following code: let l=[[[]]] lockvar! l call add(l[0][0], l) Results in E741: Value is locked let l2=deepcopy(l) call add(l2[0][0], l) Succeeds Here you can see that deepcopy has purged all locks, but I do not see this behavior documented in :h deepcopy(),

If I always use mouse under GTK to browse text file in gvim, sometimes gvim stops working.

2010-08-08 Thread H Xu
Hello everybody, If I always use mouse under GTK to browse text file in gvim, sometimes gvim stops working: It will not respond any key strokes or mouse actions inside the vim box, what I can do is to click the close button. Anyone has any idea? Thank you. Regards, Hong Xu 08/09/2010 --

Re: howto setup vim to ignore font space and allow maximize?

2010-08-08 Thread Tony Mechelynck
On 07/08/10 17:24, Aljosa Mohorovic wrote: under kde i can't get vim to maximize like other windows. if i understood correctly this is because vim calculates space font occupies and it resizes window to match font space. is there a way to tell vim to ignore font space and just maximize window

Vim 7.3e ready for beta testing

2010-08-08 Thread Bram Moolenaar
Hello Vim users, Announcing: Vim (Vi IMproved) version 7.3e BETA This is a BETA release of Vim 7.3. It consists of Vim 7.2 plus all patches, updated runtime files and some more. We are getting close to the 7.3 release! If nothing goes wrong I will release 7.3 in less than a week. Last

Re: Can I rely on purging locks by deepcopy function?

2010-08-08 Thread winterTTr
On Mon, Aug 9, 2010 at 12:37 AM, ZyX zyx@gmail.com wrote: Consider the following code: let l=[[[]]] lockvar! l call add(l[0][0], l) Results in E741: Value is locked let l2=deepcopy(l) call add(l2[0][0], l) Succeeds Here you can see that deepcopy has purged all locks,