Hi Marc! ... I think, you are seeing some kind of inconsistency here. The problem is, that '[^\n]' does match newlines. This is allowed so that in a text which...
136178
Marc Weber
marco-oweber@...
Feb 17, 2013 1:03 pm
... This doesn't make sense. If I ask to not match \n I don't want \n to be matched. Its about following the principle of least surprise. The burden to learn...
136179
Christian Brabandt
cblists@...
Feb 17, 2013 1:15 pm
Hi Marc! ... It depends. Within a text file those control chars can occur and you usually want them to be matched by '.' (or [^\n] which is the same). ... I...
136180
Erik Christiansen
dvalin@...
Feb 17, 2013 1:19 pm
... +1 ... And too much for some. The failure to employ posix EREs is Vim's only true failing, IME. (OK, by prefixing \v to every regex, we get reasonably...
136181
Marc Weber
marco-oweber@...
Feb 17, 2013 1:47 pm
... Thanks for explaining it to me. So we've hit the true question: Should '.' behave the same way as [^\n] ? Who is going to write [^\n] if you can use '.' ? ...
136182
Anthony Campbell
ac@...
Feb 17, 2013 1:51 pm
... [snip] Sorry, I lost track of how this thread started. Yes, I see why folding is an advantage in this case, and I expect I shall use it to keep track of my...
136183
ping
songpingemail@...
Feb 17, 2013 2:24 pm
just a thought/quick question: is there a "console vim" in ios that after we login (ssh/telnet) into the device, we can launch from a terminal? I think that...
136184
ping
songpingemail@...
Feb 17, 2013 2:30 pm
... I understood, thanks for reminding. I won't turn them off in my daily work. but I just want to have a quick/neat way to turn them off in SOME scenarios . ...
136185
ping
songpingemail@...
Feb 17, 2013 2:58 pm
I've recently started my blogging via jekyll and immediately feel addicted into it. but it looks not quite feel a vim way . I have to 1) :!rake post title="my...
136186
Paul Isambert
zappathustra@...
Feb 17, 2013 4:39 pm
... Something like this, perhaps: com! -nargs=1 NewPost execute '!rake post title=<q-args>39; | e YOUR_FILE Of course I don't know how you can identify...
136187
tooth pik
toothpik6@...
Feb 17, 2013 5:01 pm
... that isn't a problem for 'backupdir39; -- it munges a swapfile name that includes the path sc -- -- You received this message from the "vim_use" maillist. Do...
136188
ping
songpingemail@...
Feb 17, 2013 5:47 pm
really? this is cool then. I'm thinking to give it a trial. thanks! regards ping ... -- -- You received this message from the "vim_use" maillist. Do not...
136189
Eric Weir
eeweir@...
Feb 17, 2013 7:35 pm
... This is not anything I've had any experience with, but I recall others speaking about just that. There are at least a couple ssh apps for ios. Some report...
136190
John Little
John.B.Little@...
Feb 17, 2013 8:48 pm
... That last word should be "noswf". I presume that's a typo, or you'd get an error message. Regards, John -- -- You received this message from the "vim_use"...
136191
Bee
forth@...
Feb 17, 2013 9:42 pm
Eric I used the 'd' command in netrw, created all the folders that are normally in .vim. Added my own colorscheme... it worked. I am using ios vim on an...
136192
Chris Lott
chris@...
Feb 18, 2013 12:08 am
... Nothing competes with Vim, but I still can't get past the fact that--most of the time--I can't ever get into insert mode with iPad Vim and my external...
136193
AndyHancock
AndyMHancock@...
Feb 18, 2013 12:10 am
When I diff two files with scroll binding, then set nodiff and noscrollbind on each window, the files still seem to track each other. However, they are not...
136194
ping
songpingemail@...
Feb 18, 2013 2:33 am
... yes its typo, thanks! -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For...
136195
ping
songpingemail@...
Feb 18, 2013 4:10 am
... hi Paul: Thanks for the good sample code. I spend some time to develop it into my need, I found 2 small (but key) issues here: 1) to make command support...
136196
Bee
forth@...
Feb 18, 2013 4:31 am
... I have never had a problem getting into insert mode, simply the letter 'i' but have remapped getting out of insert back to normal mode because the default...
136197
Chris Lott
chris@...
Feb 18, 2013 5:10 am
... It seems to be a problem with (some?) external keyboards. It works fine if I just use the on-screen keyboard. A number of us were having this problem and...
136198
DaveLG526
david.gillooly@...
Feb 18, 2013 5:13 am
Somehow I have gotten MacVim to capitalize the first word in a new line.I dont want this! I may have played around with some bash script too as in bash I get...
136199
Paul Isambert
zappathustra@...
Feb 18, 2013 6:27 am
... You’re correct, I was too hasty when writing the command. Best, Paul -- -- You received this message from the "vim_use" maillist. Do not top-post! Type...
136200
shawn wilson
ag4ve.us@...
Feb 18, 2013 8:51 am
How do I get the full path of the file I'm editing? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the...
136201
Christian Brabandt
cblists@...
Feb 18, 2013 9:01 am
Hi shawn! ... 1<Ctrl-G> regards, Christian -- Charade Das Erste, das ist immer, Und wenn auch die Welt vergeht; Das Zweite ist man und bleibt man, Wenn man zu...
136202
stosss
stosss@...
Feb 18, 2013 9:12 am
... will show you where you are and let you pick another file in the directory. -- -- You received this message from the "vim_use" maillist. Do not top-post!...
136203
Jürgen Krämer
jottkaerr@...
Feb 18, 2013 9:24 am
Hi, ... register % contains the name of the current file. You can pass '%' as an ... or ... This might give you the file name with a path relative to the...
136204
Ben Fritz
fritzophrenic@...
Feb 18, 2013 2:42 pm
... I thought 7.3.796 fixed this so [^\n] is the same as '.'? Isn't that the case? -- -- You received this message from the "vim_use" maillist. Do not...
136205
Ben Fritz
fritzophrenic@...
Feb 18, 2013 2:43 pm
... Maybe 'cursorbind39; is still set. Instead of manually setting 'nodiff39; and 'noscrollbind39;, try the :diffoff command, or :diffoff! for all windows in the tab...
136206
Roland Puntaier
roland.puntaier@...
Feb 18, 2013 4:40 pm
Hi, just in case someone else has the same problem... This happens (only?) with .rst file extension (restructured text): In insert mode <C-K> gets immediately...