Re: collapsing single lines of html tag attributes via plugin??

2007-06-02 Thread Matthew Winn
is taken up with marker characters to trigger the highlighting. It'd be nice to be able to collapse all the markers.) -- Matthew Winn

Re: JSVI: Vi implemented in Javascript

2007-05-31 Thread Matthew Winn
editing commands. I think it's because once you've provided w to move to the next word you get cw and dw almost for free, and so on for other movements. -- Matthew Winn

Re: Why bottom-posting is prefered on Vim Mainling List?

2007-05-30 Thread Matthew Winn
but other readers may not, but also that by the time your response is read it may be separated from its parent by many intervening posts. Everything that's considered good posting style follows logically from that. -- Matthew Winn

Re: breakindent, take 2

2007-05-29 Thread Matthew Winn
breakindent=+n broken lines have additional indentation breakindent=-n broken lines have reduced indentation -- Matthew Winn

Re: Why bottom-posting is prefered on Vim Mainling List?

2007-05-29 Thread Matthew Winn
with you people? Have I fallen into an alternate universe where there's intelligence on the Internet?) -- Matthew Winn

Re: Why bottom-posting is prefered on Vim Mainling List?

2007-05-29 Thread Matthew Winn
On Tue, 29 May 2007 06:25:40 -0400, Michael Henry [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Matthew Winn [EMAIL PROTECTED] 2007-05-29 16:10:57: That's the wrong attitude. This is the Internet. You're supposed to insist that you know better than everyone else even if they've

Re: weird defaults in Feisty

2007-05-23 Thread Matthew Winn
exactly what I'm getting. -- Matthew Winn

Re: C-X C-F completion and paths with spaces

2007-05-20 Thread Matthew Winn
the final panel of http://www.giantitp.com/comics/oots0130.html. -- Matthew Winn

Re: How to wrap sentences?

2007-05-19 Thread Matthew Winn
then the contents of the clipboard are pasted verbatim, but if you type ^R+ while in insert mode then the clipboard contents are wrapped in the same way as any other inserted text. -- Matthew Winn

Re: Vim version 7.1a BETA has been released

2007-05-07 Thread Matthew Winn
the confusion arises because people think of ln as create a link, so they see ln x y as create a link x..., which it isn't. It makes more sense if you think of it this way: mv x ymove file x to file y cp x ycopy file x to file y ln x ylink file x to file y -- Matthew Winn

Re: Favorite little-known feature

2007-05-05 Thread Matthew Winn
of punctuation that makes regular expressions look like line noise, but they're well worth learning. The only disadvantage of regular expressions is that once you've learned to use them you tend to look scathingly at anything that doesn't provide them as a core feature. -- Matthew Winn

Re: feedkeys() allowed in sandbox

2007-05-03 Thread Matthew Winn
On Tue, 1 May 2007 19:42:02 +1000, John Beckett [EMAIL PROTECTED] wrote: Matthew Winn wrote: If there was a security problem in Vim do you really think it couldn't be exploited in 100 characters? That's a pretty shaky foundation on which to build your security. I am quite surprised

Re: feedkeys() allowed in sandbox

2007-04-30 Thread Matthew Winn
On Sun, 29 Apr 2007 19:10:55 +1000, John Beckett [EMAIL PROTECTED] wrote: Matthew Winn wrote: I don't like the idea of preventing modelines over 100 bytes. I imagine (haven't looked) that a modeline has no hard limit to its length. So multi-megabyte modelines are probably handled by Vim

Re: feedkeys() allowed in sandbox

2007-04-29 Thread Matthew Winn
limit and hoping it'll have the effect of improving security is far too optimistic for my tastes. -- Matthew Winn

Re: button t useless?

2007-04-27 Thread Matthew Winn
word over to the cursor, so dw is better for me. Starting from the middle of a word, it's a choice of bdw or diwdw. -- Matthew Winn

Re: blank line at end of file

2007-04-24 Thread Matthew Winn
of view the input has terminated unexpectedly in the middle of a line. I used to have this problem at work when people edited scripts with Notepad and then passed them to Oracle's SQL*Plus, resulting in a complaint about truncated input on every script. -- Matthew Winn

Re: VimWin

2007-04-23 Thread Matthew Winn
but are forced to use Windows should look into installing MSVDM. It's a Microsoft PowerToy that provides four virtual desktops for Windows XP. -- Matthew Winn

Re: Troubles configuring vim (multi-questions)

2007-04-14 Thread Matthew Winn
before the tab and the tab is shifted to the right as you'd expect, but if you insert in the middle of the tab the tab is expanded into spaces before the text is inserted. -- Matthew Winn

Re: Silly Question

2007-04-07 Thread Matthew Winn
can find, and also the most damaging? -- Matthew Winn

Re: How to modify code so that only one space is between two characters or words?

2007-04-06 Thread Matthew Winn
, * means zero or more). -- Matthew Winn

Re: how to replace ESC to some other key?

2007-04-05 Thread Matthew Winn
option along with ^T and ^D. I format my code for the benefit of human readers (mainly myself), so I lay it out to maximise the clarity. Manual indentation works best for that, and after nearly two decades of practice my use of ^T and ^D as required has become automatic. -- Matthew Winn

Re: quick query about moving a selection

2007-04-04 Thread Matthew Winn
by it.) -- Matthew Winn

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

2007-03-25 Thread Matthew Winn
that the overhead of having to use the shift key is small for the amount of work done. -- Matthew Winn

Re: Copying a Massive amount of text to the clipboard

2007-03-21 Thread Matthew Winn
to the first line and create a mark (ma), go to the last line, and do :'a,.y + (This style of address specification works for vi too, though the + doesn't.) -- Matthew Winn

Re: improving encryption in vim

2007-03-20 Thread Matthew Winn
, but also as Rijndael was the winning AES candidate the export of Rijndael implementations from the US is explicitly permitted. See the final paragraph of http://csrc.nist.gov/CryptoToolkit/aes/aesfact.html -- Matthew Winn

Re: improving encryption in vim

2007-03-19 Thread Matthew Winn
the best encryption you can get? -- Matthew Winn

Re: To imap or to iabbr

2007-03-07 Thread Matthew Winn
left out of the action for three letters my left hand gets impatient and bounces off the s early to give it more time to head t-wards, so an abbreviation to replace that with what I intended to type is useful. -- Matthew Winn

Re: Unicode U+2028 line separator

2007-03-03 Thread Matthew Winn
. -- Matthew Winn

Re: pulling text to the right?

2007-03-01 Thread Matthew Winn
by mapping something to maI Esc`ax. (Unlike my first try, this one won't stop when it runs out of spaces under the cursor.) -- Matthew Winn

Re: pulling text to the right?

2007-02-27 Thread Matthew Winn
. -- Matthew Winn

Re: moving buffer changes to new file?

2007-02-25 Thread Matthew Winn
The new name will be used the next time the file is saved. If there's already an existing file with the new name then you'll have to use :w! (or :x!) to overwrite the existing file. -- Matthew Winn

Re: Insert mode and arrow keys philosophy

2007-02-21 Thread Matthew Winn
over and over again or to reach for the mouse: that's the notepad way of working, and it tarnishes the soul. -- Matthew Winn

Re: perl questioin.

2007-02-19 Thread Matthew Winn
the parent read it. -- Matthew Winn

Re: :wq vs ZZ

2007-02-14 Thread Matthew Winn
editing commands.) -- Matthew Winn

Re: do not match the longest pattern

2007-02-08 Thread Matthew Winn
, if you want the shortest match no matter where it appears in the string then you'd have to save all possible matches and look for the shortest one afterwards. -- Matthew Winn

Re: replace with a number sequence

2007-02-01 Thread Matthew Winn
vim at all - I couldn't even write to a file ;) Unless you use ZZ. -- Matthew Winn

Re: BOF Vim 8 - EncryptLine

2007-01-19 Thread Matthew Winn
your data from people looking over your shoulders, that's already there. Gung'f ab tbbq. Erny areqf pna ernq ebg13 grkg jvgubhg hfvat fbsgjner. -- Matthew Winn

Re: BOF Vim 8 - EncryptLine

2007-01-18 Thread Matthew Winn
performing an assignment like $password = some string you don't really care what the content of the string happens to be, but only that it's assigned to a variable. -- Matthew Winn

Re: Reformat in visual area - vmap question

2007-01-10 Thread Matthew Winn
mapleader to , unless you have a keyboard where \ is hard to type, as , is already a Vim command. -- Matthew Winn

Re: c-wc-s on *nix vim

2006-12-29 Thread Matthew Winn
connections to Unix are over TCP/IP or serial lines with hardware flow control, and the only remaining use of ^S/^Q is as a way of manually pausing output. If you never need it, feel free to turn it off. -- Matthew Winn

Re: Re[2]: vim-display problem?!

2006-12-13 Thread Matthew Winn
with the special case of the last line of the input having no terminator. (Oracle's SQL*Plus, for example, throws a warning about truncated input. This is reasonable behaviour because an unterminated line is exactly what you'd get if the input was truncated.) -- Matthew Winn

Re: vim-display problem?!

2006-12-12 Thread Matthew Winn
_terminators_. Every line should end the same way, including the final one. That notepad doesn't do this is a long-standing bug in notepad, and is just one of the many, many reasons why nobody should use notepad for anything. -- Matthew Winn

Re: vim is too smart for its own good

2006-09-01 Thread Matthew Winn
myfile ... You can still get it, if you want to remember the good old days: http://hpux.cs.utah.edu/hppd/hpux/Editors/se-1.3/ -- Matthew Winn

Re: Looking for the difference of two files, linewise

2006-08-26 Thread Matthew Winn
= map { $_ = 1 } S; close S; open L, $ARGV[1] or die $ARGV[1]; while (L) { print unless exists $lines{$_} } close L;' shortfile longfile one two four five seven eight ten -- Matthew Winn

Re: Re[2]: filename completion and filereadable

2006-08-10 Thread Matthew Winn
such as Perl. In fact, apart from Python and XML I can't think of any languages that don't make a distinction between double and single quotes, as it's an extremely useful difference and it's a waste of a limited character set to ignore it. -- Matthew Winn

Re: Search and Replace with a Regular Expression

2006-08-05 Thread Matthew Winn
are where most of the power of both Perl and Vim is to be found. Perl 6 has tried to create a new type of regular expression that is clearer and easier to use, but to the novice it still looks like line noise only now it takes up twice as much room. -- Matthew Winn

Re: vim -S

2006-08-01 Thread Matthew Winn
here] (That's a dollar-zero after the -S, not dollar-capital-O.) When the shell runs this file it sees the exec command and runs Vim. Because $0 is the name of the script Vim opens the script and executes it, but it ignores the first line because it sees it as a comment. -- Matthew Winn

Re: scrolloff enhancement wish

2006-07-21 Thread Matthew Winn
mappings. And we have too many options already... Too many options? Is that possible? -- Matthew Winn ([EMAIL PROTECTED])

Re: :edit {file} question

2006-07-20 Thread Matthew Winn
, followed by enough ^Ws to remove the trailing parts I don't want. -- Matthew Winn ([EMAIL PROTECTED])

Re: Motions in visual(line|block)

2006-07-14 Thread Matthew Winn
for a while and then say Oh, you use the cursor keys when editing. How ... quaint. Giggling every time you walk past them works too. -- Matthew Winn ([EMAIL PROTECTED])

Re: Register size

2006-06-21 Thread Matthew Winn
Vim when moving text around. If you quit Vim and restart it on a different file then only part of the register will be saved. See :help 'viminfo'. -- Matthew Winn ([EMAIL PROTECTED])

Re: All mails lost

2006-06-07 Thread Matthew Winn
messages on the list. There have been situations in the past where the list has silently discarded messages because they don't match some arbitrary unpublished criterion, but that doesn't appear to be the case here. [cc'd to poster to be certain the message gets through] -- Matthew Winn ([EMAIL

Re: laststatus=2 anomaly (was: I sometimes have to double strike when using gvim7 over Hummingbird Exceed)

2006-06-07 Thread Matthew Winn
typing a' or a:, GK ferinstance), Polish l/ (slashed-ell, don't know the sgml entity GK offhand), Spanish n~ (en-tilde, ntilde;), and so on. Very interesting observation! Did nobody notice when I made much the same observation on Monday morning? Hello? Can anyone hear me? -- Matthew Winn

Re: laststatus=2 anomaly (was: I sometimes have to double strike when using gvim7 over Hummingbird Exceed)

2006-06-05 Thread Matthew Winn
of the letters that are lost are those that have accented or similar forms in western and eastern European languages. -- Matthew Winn ([EMAIL PROTECTED])

Re: OT: test

2006-05-26 Thread Matthew Winn
? Not in the current drivers. However, we do have plans to support it in post 10.1.0 drivers. We really mean it this time. 10.2.0 (10g r2) Is DML Returning Supported ? YES! And it's about time. See the Developer's Guide for details. -- Matthew Winn ([EMAIL PROTECTED])

Re: Visual Block: $ vs. ^ inconsistency?

2006-05-22 Thread Matthew Winn
. In contrast, ragged- right selection is necessary in order to do block selection of the end of a set of lines when the longest line is in the middle of the block. -- Matthew Winn ([EMAIL PROTECTED])

Re: Multiline file appearing in one line under Vim

2006-05-17 Thread Matthew Winn
line. Is it really several lines in Notepad, or is it one long line that has wrapped? If the latter then the following will help: :set wrap linebreak :map Up gk :map Down gj -- Matthew Winn ([EMAIL PROTECTED])

Re: Shell support in Vim?

2006-05-12 Thread Matthew Winn
. But with general colouring of undifferentiated output text I can't see how anything useful could be conveyed. All you can do is make the terminal look pretty. -- Matthew Winn ([EMAIL PROTECTED])

Re: Question about using variable with RegEx counter

2006-05-11 Thread Matthew Winn
on. Perhaps syntax match would be better, depending on the precise requirements. It's bad news if the number can go as high as 2000 but I can't think of an easier way to do it. -- Matthew Winn ([EMAIL PROTECTED])

Re: 7.0 administrivia

2006-05-09 Thread Matthew Winn
On Tue, May 09, 2006 at 04:44:32PM +0200, Nikolai Weibull wrote: On 5/9/06, Matthew Winn [EMAIL PROTECTED] wrote: On Tue, May 09, 2006 at 02:02:24PM +0200, Nikolai Weibull wrote: Well, there's always the following algorithm to consider: if (bram_is_unreasonable) { int new_child = fork

Re: regex @vim, negating a group

2006-05-04 Thread Matthew Winn
lookahead and negative lookbehind really come into their own. -- Matthew Winn ([EMAIL PROTECTED])