Hello Robert ... And "CTRL-Q<return>"? Regards Mathias...
56239
Bram Moolenaar
Bram@...
Feb 1, 2005 9:55 am
... This is still something that is in the todo list. Ideally you would be able to use "**" in every place where file names are expanded. Also for a command...
56240
Vigil
1xil4ff02@...
Feb 1, 2005 11:37 am
I adapted this for /* */ comments and it works when I type it in manually, but it seems to be ignored when I put it in vimrc. What could I be doing wrong? sy...
56241
Stahlman Family
brettstahlman@...
Feb 1, 2005 12:01 pm
... From: "Bram Moolenaar" <Bram@...> To: "Stahlman Family" <brettstahlman@...> Cc: <vim@...> Sent: Tuesday, February 01, 2005 3:55 AM ...
56242
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 12:42 pm
... I don't know. I'm just a plain user like you, not an official after all. I'm forwarding your message to the list to other users may answer. Best regards, ...
56243
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 12:58 pm
... To input Chinese text, I used the Unicode character charts (which are ranked "by radicals" with Traditional Chinese and Simplified Chinese in a single...
56244
Wind
sonic_wind@...
Feb 1, 2005 1:00 pm
Hello Vigil, it doesn't work becaus when you load a bufer with known filetype syntax script for this filetype is executed (and almost any of them have ":syntax...
56245
Wind
sonic_wind@...
Feb 1, 2005 1:19 pm
Hello Mathias, I think that <CR> is better than eny ^M insertion. So map! <F1> <esc>:TG<CR>li Tuesday, February 1, 2005, 10:56:46 AM, you wrote: MM> Hello...
Hi, ... I have too. am using Japanese with BDF Unicode M+ Font, and libiconv to detect several encodings. BDF Unicode M+ Font ...
56248
Furash Gary
furashg@...
Feb 1, 2005 2:24 pm
The behavior I want is, if the file is type outline (otl), then set foldmethod=expr (necessary for vimoutliner) else, if the file is a java, beanshell, etc,...
56249
Mikolaj Machowski
mikmach@...
Feb 1, 2005 2:48 pm
... <C-Q><return> ... <cr> - literally as 4 chars. Will work always and everywhere. m. -- LaTeX + Vim = http://vim-latex.sourceforge.net/ Vim-list(s) Users...
56250
george@...
Feb 1, 2005 2:51 pm
Here is the file....
56251
Wind
sonic_wind@...
Feb 1, 2005 3:38 pm
Hello Furash, You are right there is more right place for this. For stuff like set foldmethod ... I prefere to use ftplugin feature: for example java...
56252
David S.
davidschein@...
Feb 1, 2005 4:12 pm
So I did not have any luck using this approach. In fact I could not actually get that to work at all. I tried to add it to my python_folds.vim file. I also...
56253
Antony Scriven
adscriven@...
Feb 1, 2005 4:33 pm
Hi ... Only if you source the mswin.vim script. By default windows uses ^V to insert a literal char too. ... Not if `<' is in 'cpoptions39;, which, I grant you,...
56254
Wind
sonic_wind@...
Feb 1, 2005 5:20 pm
Hello David, Tuesday, February 1, 2005, 6:19:42 PM, you wrote: DS> So I did not have any luck using this approach. In fact I could not DS> actually get that...
56255
vim@...
Feb 1, 2005 6:35 pm
The text between the ----- lines below contains a vim function and command that calls the function which counts the number of times a pattern is matched over a...
56256
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 7:07 pm
vim@... wrote: [...] ... ":call" invokes a _function_ and discards its return value. ":exec" executes a _string_ (or a number of space-separated...
56257
krasnal
krasnal@...
Feb 1, 2005 7:30 pm
Hello all, I'm looking for a tip regarding jumps/tags functionality. What I'm after? I'd like to synchronize the jumps and the tags lists somehow. The...
56258
Gary Johnson
garyjohn@...
Feb 1, 2005 7:54 pm
... In addition to what Tony said, you'll find that moving the cursor back to its original location isn't sufficient to restore the screen to the state it was...
56259
Nikola Knezevic
indy@...
Feb 1, 2005 8:28 pm
Hi, sorry if this is an old question, but I couldn't find the right answer. I have Croatian keyboard which I want to use under vim in command mode. In insert...
56260
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 8:53 pm
... Control-SpecialCharacter keys often do not move from their position on the American QWERTY layout. You may try Ctrl (without AltGr) + the key at the right...
56261
vim@...
Feb 1, 2005 9:28 pm
Thanks Gary and Antoine for the replies. I have integrated Gary's screen and cursor save/restore code into my function. Now if I call the function using a...
56262
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 9:47 pm
... yes, see ":help :call": Without a range and for functions that accept a range, the function is called once. When a range is given the cursor is positioned...
56263
Gary Johnson
garyjohn@...
Feb 1, 2005 9:56 pm
... That would be my guess. In fact, ":help :call" (just above ":help function-range-example") says: Without a range and for functions that accept a range,...
56264
Bryce Ready
bryce.ready@...
Feb 1, 2005 10:06 pm
Hi all, I am using gVim 6.3.30, on a Fedora Core 3 linux machine. The documentation for the foldtext variable (which defines what is shown for a folded group...
56265
Luc Hermitte
hermitte@...
Feb 1, 2005 10:24 pm
Hello, ... You can substitute leading tabs by as many strings of &tabstop spaces. That is what I use into: ...
56266
Luc Hermitte
hermitte@...
Feb 1, 2005 10:25 pm
Hello, ... I'd rather use ftplugins (or any similar mechanism) that messing my .vimrc with autocommands. However, if you want to use the same definition with...
56267
Gary Johnson
garyjohn@...
Feb 1, 2005 11:45 pm
... FWIW, I do something similar in my .vimrc: set foldtext=MyFoldText() " MyFoldText() " " This is intended to be the same as the default foldtext() "...