... Google translator is rather poor dictionary. If you want to learn proper english you should use a good dictionary like Cambridge, Oxford, Webster. They...
135639
John Little
John.B.Little@...
Jan 21, 2013 10:18 am
... You can remap one of the keys in Windows. See in the Vim wiki: http://vim.wikia.com/wiki/Map_caps_lock_to_escape_in_Windows It has a more general...
135640
Benoit Thomas
benoit.thomas@...
Jan 21, 2013 4:04 pm
Thanks all for the explanation, I now better understand what happens under the hood. Using \<LT>C-E> did work. Ben. ... -- You received this message from the...
135641
Aaron Webster
awebster@...
Jan 21, 2013 4:04 pm
Hi all, I'm looking for a way to use regular expressions in abbreviations. For example, ... would would expand every instance of, '50nm' to...
135642
av
alexandreviau@...
Jan 21, 2013 4:05 pm
Hi, Do you know how to run shell commands containing non-ascii characters from Vim? example: echo system('type myfileété2012.txt') I know that a simple "r...
135643
av
alexandreviau@...
Jan 21, 2013 4:05 pm
Try simpleSnip. ... -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more...
135644
Ole Juul Andersen
olejuulandersen@...
Jan 21, 2013 4:05 pm
Hi. After installing the correct drivers for my graphics card (NVIDIA GeForce 560 Ti) in Fedora 16, I have started getting the same error as this guy in this 3...
135645
Ben Fritz
fritzophrenic@...
Jan 21, 2013 4:25 pm
... It *might* be possible to change the preceding text as you desire using an <expr> based abbreviation on "nm". It would be easier with a mapping. What you...
135646
Marc Weber
marco-oweber@...
Jan 21, 2013 4:39 pm
... Tell us why the UltiSnip and snipmate community should do it. Then we all have a nice overview about the available options. I'll tell you why you should...
135647
Ben Fritz
fritzophrenic@...
Jan 21, 2013 4:41 pm
... Probably your 'encoding39; option does not match the filesystem encoding. For example, my Vim uses utf-8 for 'encoding39; but filenames on my system appear to...
135648
Tim Chase
vim@...
Jan 21, 2013 4:49 pm
... While a bit ugly, you can do it with the following: function! ExpandSI() let l:cword = expand('<cword>') if l:cword=~'^\d92;+n$' let l:num = l:cword[:-2] ...
135649
Christian Brabandt
cblists@...
Jan 21, 2013 5:08 pm
Hi Ben! ... The todo list mentions several issues with encoding on win32. There was even a patch posted on vim-dev some time ago, that should take care of this...
135650
Christian Brabandt
cblists@...
Jan 21, 2013 5:13 pm
Hi Tim! ... You probably waht this to be buffer-local (and be loaded by a filetype plugin). Mit freundlichen Grüßen Christian -- Die Dummheit drängt sich...
135651
av
alexandreviau@...
Jan 21, 2013 5:27 pm
thanks, I will try your propositions and get back to post the working solution. -- You received this message from the "vim_use" maillist. Do not top-post! Type...
135652
Christian Brabandt
cblists@...
Jan 21, 2013 5:54 pm
Hi Ole! ... What are the steps to reproduce the error? regards, Christian -- Die Arroganz der Kleinen ist es, immer von sich, die der Großen nie von sich zu...
135653
Ole Juul Andersen
olejuulandersen@...
Jan 21, 2013 8:51 pm
Hi Christian. I might have to apologize for bad computer language from my part. What I meant by reproducible was, that if I do the exact same thing for the...
135654
neilhwatson@...
Jan 21, 2013 9:04 pm
Greetings, I set custom ftplugin like this: au BufRead,BufNewFile *.cf set ft=cf3 I edit a .cf file the plugin works correctly. If I start a new buffer, say...
135655
sc
toothpik@...
Jan 21, 2013 9:20 pm
... have you tried using "setl" instead of "set"? sc -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text...
135656
neilhwatson@...
Jan 21, 2013 9:24 pm
I tried this: au BufRead,BufNewFile *.cf setlocal ft=cf3 The maps from the cf plugin still worked if my buffer was *.html. -- You received this message from...
135657
Ben Fritz
fritzophrenic@...
Jan 21, 2013 10:09 pm
... You need to set up buffer-local mappings if you don't want them to be defined globally to all of Vim. ... If you want to be extra careful you can undo them...
135658
Egmont Koblinger
egmont@...
Jan 21, 2013 10:34 pm
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....