Re: (wandering off-topic) Re: How to use :help?

2015-09-16 Thread Gevisz
On Tue, 15 Sep 2015 12:24:13 -0400 George Dinwiddie wrote: > Erik, > > On 9/13/15 7:31 AM, Erik Christiansen wrote: > > The problem isn't unique to Vim, though. Try manpages w.r.t. unix > > commands you've never heard of. > > The command 'apropos' is your friend. :-)

Re: (wandering off-topic) Re: How to use :help?

2015-09-16 Thread Erik Christiansen
On 16.09.15 11:28, Gevisz wrote: > Just looked in 'man apropos' and tried 'apropos mount' > > It does not work. Can you, please, provide an example. The "apropos" command is the same as "man -k". Here, both give 27 hits for "mount". You'll need to diagnose the problem at your end. Erik -- --

vim_use: (wandering off-topic) Re: How to use :help?

2015-09-16 Thread 毕生泰
On 16/09/15 10:28, Gevisz wrote: On Tue, 15 Sep 2015 12:24:13 -0400 George Dinwiddie wrote: Erik, On 9/13/15 7:31 AM, Erik Christiansen wrote: The problem isn't unique to Vim, though. Try manpages w.r.t. unix commands you've never heard of. The command 'apropos'

Re: (wandering off-topic) Re: How to use :help?

2015-09-16 Thread Niels Kobschaetzki
On 16/09 11:28, Gevisz wrote: On Tue, 15 Sep 2015 12:24:13 -0400 George Dinwiddie wrote: Erik, On 9/13/15 7:31 AM, Erik Christiansen wrote: > The problem isn't unique to Vim, though. Try manpages w.r.t. unix > commands you've never heard of. The command 'apropos'

Re: syntax highlighting for sql: "Capability" is keyword

2015-09-16 Thread Paul
David Fishburn gmail.com> writes: > > This is why that is a keyword. > > > ALTER SERVER statement > > Modifies the attributes of a remote server. > > Syntax > Alter a remote server > ALTER [ REMOTE ] SERVER server-name > [ CLASS server-class | variable ] > [ USING connection-string-info |

Re: Visual blcok: Force insert ("I") to insert even in rows that have no characters

2015-09-16 Thread 'Jürgen Krämer' via vim_use
Hi, Paul schrieb am 16.09.2015 um 15:42: > When coding, I often press ctrl-V, highlight a column of text of a certain > height, then press "I" to insert (say) a comment delimiter or a line > continuation flag character. This doesn't quite work on short rows of text > that end before the

Re: gVIM Screen Corruption

2015-09-16 Thread Charles Norton
Are there instructions for how to apply the Intel patch to correct the vim display error? Charles M Norton Database Programmer/Systems Integrator On Tuesday, September 15, 2015 10:06 PM, h_east wrote: Hi Charles, 2015-9-14(Mon) 1:51:25 UTC+9 octopusgrabbus:

Visual blcok: Force insert ("I") to insert even in rows that have no characters

2015-09-16 Thread Paul
When coding, I often press ctrl-V, highlight a column of text of a certain height, then press "I" to insert (say) a comment delimiter or a line continuation flag character. This doesn't quite work on short rows of text that end before the column that I'm highlighting. I would like vim to

Re: gVIM Screen Corruption

2015-09-16 Thread Christian Brabandt
Hi Charles! On Mi, 16 Sep 2015, Charles Norton wrote: > Are there instructions for how to apply the Intel patch to correct the > vim display error? This patch has been included into Vim. Get a newer Vim version or compile yourself from the github repository. Best, Christian -- Wer Weinbrände

Re: gVIM Screen Corruption

2015-09-16 Thread h_east
Hi Charles, Please do not top-post. https://en.wikipedia.org/wiki/Posting_style#Top-posting 2015-9-16(Wed) 22:58:10 UTC+9 octopusgrabbus: > Are there instructions for how to apply the Intel patch to correct the vim > display error? No exist Intel patch. Please confirm Vim 7.4.869 or later.

List of potential insert mode control character mappings?

2015-09-16 Thread Josef Fortier
Looking at insert.txt I saw this note: The following mappings are suggested to make typing the completion commands a bit easier (although they will hide other commands):

Can matchadd() highlight matches that start off-screen?

2015-09-16 Thread Ben Fritz
I used a matchadd() pattern to highlight functions that violate my team's coding standards by being too many lines. It works...but only if the first line of the function is currently visible in the window. As soon as I scroll the start of the match off-screen, the match disappears. Is there a

Re: List of potential insert mode control character mappings?

2015-09-16 Thread Tony Mechelynck
On Wed, Sep 16, 2015 at 9:54 PM, Josef Fortier wrote: > Looking at insert.txt I saw this note: > > The following mappings are suggested to make typing the completion commands > a bit easier (although they will hide other commands): > :inoremap ^] ^X^] >

redirect output to a command line

2015-09-16 Thread shawn wilson
I often want to query vim from a command line - so for example: vim --servername SWILSON --remote-send ':tabs' executes fine and displays the results in vim and i get nothing on the command line. I either want a simple shell style redirect (and then spit it out to $tty) or redirect to a buffer

Re: List of potential insert mode control character mappings?

2015-09-16 Thread Josef Fortier
I can appreciate your point of view, but I'm not at all comfortable using function keys: 1) They are way to far from home row 2) My muscle memory is inadequate (partly due to the distance) 3) Not all my regular keyboards have truly usable function keys (and layouts are inconsistent). > Ctrl-F

Re: redirect output to a command line

2015-09-16 Thread shawn wilson
nm, I think I got it: vim --servername SWILSON --remote-send ':call RedirFile("tabs", "/dev/pts/57")' with: function! RedirFile(cmd, file) redir => message silent execute a:cmd redir END let lines = split(message, '\n') call writefile(lines, a:file) endfunction In my vimrc seems to

Re: Visual blcok: Force insert ("I")....

2015-09-16 Thread Paul
'Jürgen Krämer' via vim_use googlegroups.com> writes: > use "A" instead of "I". "A" will first pad short lines with white > space to reach the required length. That works great! Thanks, Jurgen! -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply

Re: Visual blcok: Force insert ("I") to insert even in rows that have no characters

2015-09-16 Thread Gary Johnson
On 2015-09-16, 'Jürgen Krämer' via vim_use wrote: > Hi, > > Paul schrieb am 16.09.2015 um 15:42: > > When coding, I often press ctrl-V, highlight a column of text of a certain > > height, then press "I" to insert (say) a comment delimiter or a line > > continuation flag character. This doesn't

Re: vim_use: (wandering off-topic) Re: How to use :help?

2015-09-16 Thread Gevisz
On Wed, 16 Sep 2015 10:50:54 +0200 Cedric Bhihe (毕生泰) wrote: > On 16/09/15 10:28, Gevisz wrote: > > On Tue, 15 Sep 2015 12:24:13 -0400 George Dinwiddie > > wrote: > > > >> Erik, > >> > >> On 9/13/15 7:31 AM, Erik Christiansen wrote: > >>> The

Re: List of potential insert mode control character mappings?

2015-09-16 Thread Josef Fortier
Some more to avoid that occur to me: More erminal characters C-H C-I C-J C-C C-[ Vim C-O C-R C-X Possible candidates C-D which would normally signal "end of file". Possibly a good candidate for a writequit mapping? C-F C-W possibly invoke window commands (mirrors normal commands?) C-G

Re: (wandering off-topic) Re: How to use :help?

2015-09-16 Thread Gevisz
On Wed, 16 Sep 2015 19:01:01 +1000 Erik Christiansen wrote: > On 16.09.15 11:28, Gevisz wrote: > > Just looked in 'man apropos' and tried 'apropos mount' > > > > It does not work. Can you, please, provide an example. > > The "apropos" command is the same as "man -k".

Re: List of potential insert mode control character mappings?

2015-09-16 Thread Josef Fortier
More characters C-N C-P -- -- 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

Re: (wandering off-topic) Re: How to use :help?

2015-09-16 Thread Gevisz
On Wed, 16 Sep 2015 10:46:39 +0200 Niels Kobschaetzki wrote: > On 16/09 11:28, Gevisz wrote: > >On Tue, 15 Sep 2015 12:24:13 -0400 George Dinwiddie > > wrote: > > > >> Erik, > >> > >> On 9/13/15 7:31 AM, Erik Christiansen wrote: > >> > The

gvim on cygwin/xfree inherits height of xterm

2015-09-16 Thread Paul
If I issue the the gvim command from an xterm, it has is bigger/taller than the the standard size that we have all come to know and love over the decades. Its size depends on the xterm that issued the command. If this is not the desired behaviour, is there a way to get gvim to default to its