Hello Robert ... And "CTRL-Q<return>"? Regards Mathias...
Mathias Michaelis
michaelis@...
Feb 1, 2005 8:57 am
56239
... 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...
Bram Moolenaar
Bram@...
Feb 1, 2005 9:55 am
56240
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...
Vigil
1xil4ff02@...
Feb 1, 2005 11:37 am
56241
... From: "Bram Moolenaar" <Bram@...> To: "Stahlman Family" <brettstahlman@...> Cc: <vim@...> Sent: Tuesday, February 01, 2005 3:55 AM ...
Stahlman Family
brettstahlman@...
Feb 1, 2005 12:01 pm
56242
... 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, ...
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 12:42 pm
56243
... To input Chinese text, I used the Unicode character charts (which are ranked "by radicals" with Traditional Chinese and Simplified Chinese in a single...
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 12:58 pm
56244
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...
Wind
sonic_wind@...
Feb 1, 2005 1:00 pm
56245
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 ...
Gashu
gashu@...
Feb 1, 2005 2:00 pm
56248
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,...
Furash Gary
furashg@...
Feb 1, 2005 2:24 pm
56249
... <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...
Mikolaj Machowski
mikmach@...
Feb 1, 2005 2:48 pm
56250
Here is the file....
george@...
Feb 1, 2005 2:51 pm
56251
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...
Wind
sonic_wind@...
Feb 1, 2005 3:38 pm
56252
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...
David S.
davidschein@...
Feb 1, 2005 4:12 pm
56253
Hi ... Only if you source the mswin.vim script. By default windows uses ^V to insert a literal char too. ... Not if `<' is in 'cpoptions', which, I grant you,...
Antony Scriven
adscriven@...
Feb 1, 2005 4:33 pm
56254
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...
Wind
sonic_wind@...
Feb 1, 2005 5:20 pm
56255
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...
vim@...
Feb 1, 2005 6:35 pm
56256
vim@... wrote: [...] ... ":call" invokes a _function_ and discards its return value. ":exec" executes a _string_ (or a number of space-separated...
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 7:07 pm
56257
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...
krasnal
krasnal@...
Feb 1, 2005 7:30 pm
56258
... 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...
Gary Johnson
garyjohn@...
Feb 1, 2005 7:54 pm
56259
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...
Nikola Knezevic
indy@...
Feb 1, 2005 8:28 pm
56260
... 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...
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 8:53 pm
56261
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...
vim@...
Feb 1, 2005 9:28 pm
56262
... 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...
Antoine J. Mechelynck
antoine.mechelynck@...
Feb 1, 2005 9:47 pm
56263
... 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,...
Gary Johnson
garyjohn@...
Feb 1, 2005 9:56 pm
56264
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...
Bryce Ready
bryce.ready@...
Feb 1, 2005 10:06 pm
56265
Hello, ... You can substitute leading tabs by as many strings of &tabstop spaces. That is what I use into: ...
Luc Hermitte
hermitte@...
Feb 1, 2005 10:24 pm
56266
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...
Luc Hermitte
hermitte@...
Feb 1, 2005 10:25 pm
56267
... FWIW, I do something similar in my .vimrc: set foldtext=MyFoldText() " MyFoldText() " " This is intended to be the same as the default foldtext() "...