Re: Window resizing

2011-02-26 Thread Bee
On Feb 26, 4:13 pm, David Kahn wrote: > I am having some trouble following (or getting the expected result) > following the documentation in resizing a window: > > :res[ize] -N                    *:res* *:resize* *CTRL-W_-* > CTRL-W -    Decrease current window height by N (default 1). >         I

Re: Help! how to check viminfo for errors?

2011-02-26 Thread Hugh Sasse
On Sat, 26 Feb 2011, howard Schwartz wrote: > I know my pleas are getting old for you veterans. But I am trying to make Only rejoined the list recently, but searching doesn't show up any replies to your messages about this. > .viminfo work for a blind friend, and he keeps getting more and more e

Help! how to check viminfo for errors?

2011-02-26 Thread howard Schwartz
I know my pleas are getting old for you veterans. But I am trying to make .viminfo work for a blind friend, and he keeps getting more and more errors. I've scoured both the usual and unusual documentation, the scripts library, the web, and vim_use archives - and still can not find certain basic

Re: Window resizing

2011-02-26 Thread AK
On 02/26/2011 07:13 PM, David Kahn wrote: I am having some trouble following (or getting the expected result) following the documentation in resizing a window: :res[ize] -N*:res* *:resize* *CTRL-W_-* CTRL-W -Decrease current window height by N (default 1). If use

Window resizing

2011-02-26 Thread David Kahn
I am having some trouble following (or getting the expected result) following the documentation in resizing a window: :res[ize] -N*:res* *:resize* *CTRL-W_-* CTRL-W -Decrease current window height by N (default 1). If used after |:vertical|: decrease width by N. :r

Re: bidi in vim

2011-02-26 Thread Moshe Kamensky
* Ben Schmidt [25/02/11 17:12]: > Hi, Moshe, > > I've rearranged things a bit to suit my reply. > > > Of course I also would prefer to have full bidi support, but I can also > > see that this would require some serious changes and complications in > > the code, > > I think basing it on syntax r

Re: bp and CTRL-^

2011-02-26 Thread sc
On Saturday 26 February 2011 08:40:08 Andy Wokula wrote: > Am 25.02.2011 21:12, schrieb sc: > > all-- > > > > the help for CTRL-^ says it is the same as e #, but it is > > clearly different when the alternate buffer is a Scratch > > buffer -- if you try to use e # (or bp) you get the error > > > >

Re: Changing CLI Vim's font (was uselessly "Abridged summary of vim_use@googlegroups.com - 30 Messages in 12 Topics")

2011-02-26 Thread Tim Chase
On 02/26/2011 03:53 AM, Tong Zhang wrote: How can I change my vim's fonts(CLI)? CLI Vim depends on the font(s) of the containing console, so it depends on the font you're using in cmd.exe/xterm/rxvt/Terminal/etc. For GUI Vim, you can set 'guifont': :set guifont=? [snipping verbose, usele

Re: Abridged summary of vim_use@googlegroups.com - 30 Messages in 12 Topics

2011-02-26 Thread Tong Zhang
Hi, ALL! How can I change my vim's fonts(CLI)? Best regards, Tony On Sat, 2011-02-26 at 06:06 +, vim_use+nore...@googlegroups.com wrote: > Today's Topic Summary > Group: http://groups.google.com/group/vim_use/topics > > * Remember marks but Not Jumps? [1 Update] > * inputdial

Re: bp and CTRL-^

2011-02-26 Thread Andy Wokula
Am 25.02.2011 21:12, schrieb sc: all-- the help for CTRL-^ says it is the same as e #, but it is clearly different when the alternate buffer is a Scratch buffer -- if you try to use e # (or bp) you get the error E499: Empty file name for '%' or '#'... Try :b # instead. -- Andy -- You re

Re: inputdialog default string

2011-02-26 Thread Ben Schmidt
I use inputdialog in the following way: let findstring = inputdialog('Search string under source\ and include\ ',expand('')) execute 'vimgrep ' '/'.findstring.'/' '..\include\*.h *.[cs] ' The default string will be the word under cursor. Is there any way to set the default string to be the con