Re: Could not load library msvcrt-ruby240.dll

2018-02-22 Thread Christian Brabandt
On Do, 22 Feb 2018, Frantz Baustier wrote: > >> Ruby is install in C:\Ruby24 and the bin folder containing the > >> msvcrt-ruby240.dll is in %PATH%. > >> > >> I also tried to put in my vimrc file set > >> rubydll="C:\Ruby24\bin\msvcrt-ruby240.dll" but I got the following error : > > > > did

Re: CTRL-[ == ALT == ESC to Vim? (or how to make them different)

2018-02-22 Thread Renato Fabbri
Em quarta-feira, 21 de fevereiro de 2018 19:07:14 UTC-3, ZyX escreveu: > 2018-02-21 14:51 GMT+03:00 Renato Fabbri: > > That is what I get when typing with > > in insert mode. > > > > > > ((( > > > > " C-V C-[ > > " C-V A-x > > x > > > > " C-V > > echo " " == " " == " " > > echo ' ' == ' ' == '

Re : Re: Could not load library msvcrt-ruby240.dll

2018-02-22 Thread Frantz Baustier
Le 22 février 2018 à 09:33, Christian Brabandt a écrit : On Do, 22 Feb 2018, Frantz Baustier wrote: Ruby is install in C:\Ruby24 and the bin folder containing the msvcrt-ruby240.dll is in %PATH%. I also tried to put in my vimrc file set

Re: +eval feature missing in the MS32 binary

2018-02-22 Thread Bram Moolenaar
Aonton Shepelev wrote: > Is the '+eval' feature intentionally turned off for the MS32 > "GUI executable" of vim: > > ftp://ftp.vim.org/pub/vim/pc/gvim80-586.zip I just tried and that executable does have +eval. -- LAUNCELOT: Isn't there a St. Arrggghhh's in Cornwall? ARTHUR:No,

making custom key names for mappings

2018-02-22 Thread Renato Fabbri
leader and localleader are the standard, so one might have conflicts between scripts because all of them use leader and localleader. how would you define, say , which you set to the leader by default, but can be changed to any key sequence (including c-v derived). == ideally, I would have a

Re: vimdiff - how to jump to next difference in long line - shortcut ]c does not work

2018-02-22 Thread Arun
On Wed, Feb 21, 2018 at 10:53 PM, Igor Forca wrote: > @Arun, thanks a lot for this code. I have performed two tests: > > TEST 1: LINES WITH NO DIFFERENCE BETWEEN TWO LINES WITH DIFFERENCES > > File1: > aaa aaa > aaa bbb > aaa aaa > aaa bbb > > File2: > aaa aaa > aaa ccc > aaa

Re: vim8.0 bug: syntax highlight breaks for "big" text file

2018-02-22 Thread Uri Okrent
I'm having the same issue with large python files with the exact same workaround: > 1. open file > 2. page down, OK > 3. repeat 2 till the end of file, OK > 4. go to first line, OK > 5. go to last line, OK I'm using vim 8 installed via homebrew on a mac. VIM - Vi IMproved 8.0 (2016 Sep 12,

Re: making custom key names for mappings

2018-02-22 Thread Nikolay Aleksandrovich Pavlov
2018-02-22 18:58 GMT+03:00 Renato Fabbri : > leader and localleader are the standard, so one might > have conflicts between scripts because > all of them use leader and localleader. > > how would you define, say > , which you set to the > leader by default, > but can be

Re: making custom key names for mappings

2018-02-22 Thread Renato Fabbri
Well, from your comments, i put a: let g:aall = mapleader " let mapleader = '' if exists("g:aa_leader") let mapleader = g:aa_leader el let mapleader = 'anything' en before the mappings, and a: let mapleader = g:aall after them and it is all ok. (only these mappings use the temporarily

after directory of a plugin in pack/

2018-02-22 Thread Renato Fabbri
I have plugins in pack/ttm/opt// they have directories such as plugin/ syntax/ ftdetect/ and all always works as expected. Only the after/ directory has a "problem": i have files e.g. in: pack/ttm/opt//after/plugin/ Such afile.vim is not loaded unless i execute: :runtime! plugin/**/*.vim Is

Re: vimdiff - how to jump to next difference in long line - shortcut ]c does not work

2018-02-22 Thread Igor Forca
@Arun, thanks a million for this script. ]x and [x work exactly what I want. I also tested the ]c and it behaves the sames as ]x and [c behaves the same as [x on my previous post samples. I actually only need ]x and [x behavior, but just out of curiosity what suppose to be the difference

Re: vimdiff - how to jump to next difference in long line - shortcut ]c does not work

2018-02-22 Thread Rick Howe
I am not sure how my plugin, https://github.com/rickhowe/diffchar.vim, can help you, but it provides ]b/[b/]e/[e keymaps to jump cursor around the exact differences. Please try it. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you

Re: making custom key names for mappings

2018-02-22 Thread Nikolay Aleksandrovich Pavlov
2018-02-23 1:43 GMT+03:00 Renato Fabbri : > Well, from your comments, i put a: > > let g:aall = mapleader > " let mapleader = '' > if exists("g:aa_leader") > let mapleader = g:aa_leader > el > let mapleader = 'anything' > en > > > before the mappings, and a: > > let

Re: vimdiff - how to jump to next difference in long line - shortcut ]c does not work

2018-02-22 Thread Arun
On Thu, Feb 22, 2018 at 9:26 AM, Arun wrote: > On Wed, Feb 21, 2018 at 10:53 PM, Igor Forca wrote: > >> @Arun, thanks a lot for this code. I have performed two tests: >> >> TEST 1: LINES WITH NO DIFFERENCE BETWEEN TWO LINES WITH DIFFERENCES >> >> File1: >>