Hi Bram and others, Returning to this old thread regarding mouse clicks beyond column 223... Seems that xterm's 1006 extension is going to be the "winning"...
135659
AndyHancock
AndyMHancock@...
Jan 22, 2013 5:04 am
I installed cygwin's gvim on Windows 7. I found that pasting from the Windows clipboard into gvim doesn't work by clicking the middle mouse button unless I go...
Hi, ... for testing purposes you might want to use a simple batch file instead of the type command so you can see which file name is actually seen by the...
135662
Tony Mechelynck
antoine.mechelynck@...
Jan 22, 2013 6:58 am
... [...] As evidenced by your "version" listing, your Cygwin gvim is compiled with GTK2 libraries to run under X11. As such its quote and plus registers...
135663
Christian Brabandt
cblists@...
Jan 22, 2013 7:04 am
... You might be interested in the cygwin_clipboard patch, that is floating around vim_dev and just recently was updated to work with recent Vim versions: ...
135664
Gary Johnson
garyjohn@...
Jan 22, 2013 8:36 am
... [...] ... Andy can certainly try this patch, but I thought it applied only to the Cygwin console vim. Regards, Gary -- You received this message from the...
135665
Christian Brabandt
cblists@...
Jan 22, 2013 8:54 am
... I honestly don't know. I thought, it works for all Cygwin versions. regards, Christian -- You received this message from the "vim_use" maillist. Do not...
135666
Jeroen Budts
jeroen@...
Jan 22, 2013 10:52 am
... Hash: SHA256 Hi all, Is it somehow possible to specify, for each fold with a marker, the initial state (folded/not folded) for that fold? I seem to...
135667
neilhwatson@...
Jan 22, 2013 2:40 pm
Success with maps. Thank you. nmap <buffer> limits the map to that file type. I tried the same with abbreviations using iab <buffer>. This works too well....
135668
Martin Lundberg
martin.lundberg@...
Jan 22, 2013 5:00 pm
Hi! In HTML omnicompletion vim searches <style> and included stylesheets when you are adding classes to tags like <div class="| but when it adds the values it...
135669
Eric Weir
eeweir@...
Jan 22, 2013 6:27 pm
In my fumbling way, with help from a subscriber to the vim_mac list, I'm figuring out how to use vim on an ipad, to the extent that at this time it's possible...
135670
Ben Fritz
fritzophrenic@...
Jan 22, 2013 8:29 pm
... I've never seen a way to do this. But you can save information about manually opened or closed folds in a "view" file with the :mkview command. See :help...
135671
Ben Fritz
fritzophrenic@...
Jan 22, 2013 8:30 pm
... Where did you define the abbreviations? How did you edit the new buffer (specific command sequence)? -- You received this message from the "vim_use"...
135672
neilhwatson@...
Jan 22, 2013 8:41 pm
... (specific command sequence)? The abbreviations are on the ftplugin. New buffer: :e newfile.cf The plugin is here: ...
135673
Charles Campbell
Charles.E.Campbell@...
Jan 22, 2013 9:25 pm
... In your code: once you have g:DisableCF3Ftplugin existing, the ftplugin won't be loaded again. Buffers are not filetypes; so you need to allow reloading...
135674
David Fishburn
dfishburn.vim@...
Jan 22, 2013 9:26 pm
I had a quick look at the code and didn't see a way to turn it off. Though, I am not familiar with the code for that plugin, so it was more of a cursory...
135675
Charles Campbell
Charles.E.Campbell@...
Jan 22, 2013 9:35 pm
... I use manpageview for help: (http://www.drchip.org/astronaut/vim/index.html#MANPAGEVIEW) *OMan* "only" man page will become sole window. Side effect:...
135676
neilhwatson@...
Jan 22, 2013 9:39 pm
I have this: if exists("g:DisableCF3Ftplugin") finish endif But I do not have 'let g:DisableCF3Ftplugin=1' or anything similar in .vimrc or elsewhere. How can...
135677
Ben Fritz
fritzophrenic@...
Jan 22, 2013 9:41 pm
... I saw that too, but the plugin file never sets g:DisableCF3Ftplugin, it looks like it is simply a way to disable the ftplugin from taking effect if the...
135678
Ben Fritz
fritzophrenic@...
Jan 22, 2013 9:48 pm
... Or if it's supposed to be a global disable, don't set it to true inside the plugin file; it would still be ok to check its existence. -- You received this...
135679
Eric Weir
eeweir@...
Jan 23, 2013 12:47 am
... Thanks, Charles. Yes, I think that was what I meant. Thanks especially for the specific help references. I did poke around there trying to see what I could...
135680
John Little
John.B.Little@...
Jan 23, 2013 1:03 am
... If the 'helpheight39; option does not suit, the help command will use an existing help buffer, so you can create a window, set the buffer type to help, then...
135681
Tony Mechelynck
antoine.mechelynck@...
Jan 23, 2013 2:04 am
... One possible way to do it to test for both already-loaded and user-disabled would be (near the start of the ftplugin) if exists...
135682
lei yang
yanglei.fage@...
Jan 23, 2013 6:04 am
Hi experts, I only want enable spell checking for the line contains # ----> "# often is the comments" , in another word I only want to check the comment line,...
135683
Andrew Hancock
andymhancock@...
Jan 23, 2013 6:52 am
On Tue, Jan 22, 2013 at 1:58 AM, Tony Mechelynck ... I actually have the PC gvim as well as cygwin's. I switch over when I use a gvim buffer as a bash command...
135684
Andrew Hancock
andymhancock@...
Jan 23, 2013 6:59 am
On Tue, Jan 22, 2013 at 3:54 AM, Christian Brabandt ... The thread doesn't exactly describe the symptom being addressed. Since this is cygwin's gvim, I'm...
135685
Benjamin R. Haskell
vim@...
Jan 23, 2013 8:33 am
... It can't be changed with an option, but it appears to be easily disabled through manually editing the htmlcomplete file. On line 380 (or so) of...
135686
Bram Moolenaar
Bram@...
Jan 23, 2013 12:12 pm
... I do not think more than a few people run into the 223 column limit. And the new feature only works with the latest terminal emulators. Thus it doesn't...
135687
A Loumiotis
antonis.loumiotis@...
Jan 23, 2013 12:30 pm
... Hi, I'm trying to implement Marcin's suggestion but the system() function doesn't seem to work in my case. I get a "E484 error: Can't open file" error when...