Re: making custom key names for mappings

2018-02-26 Thread Renato Fabbri
On Mon, Feb 26, 2018 at 5:04 AM, Nikolay Aleksandrovich Pavlov < zyx@gmail.com> wrote: > 2018-02-26 4:20 GMT+03:00 Renato Fabbri : > > Em sexta-feira, 23 de fevereiro de 2018 15:51:35 UTC-3, ZyX escreveu: > >> 2018-02-23 18:21 GMT+03:00 Renato Fabbri: > >> > Em

Re: making custom key names for mappings

2018-02-26 Thread Nikolay Aleksandrovich Pavlov
2018-02-26 4:20 GMT+03:00 Renato Fabbri : > Em sexta-feira, 23 de fevereiro de 2018 15:51:35 UTC-3, ZyX escreveu: >> 2018-02-23 18:21 GMT+03:00 Renato Fabbri: >> > Em quinta-feira, 22 de fevereiro de 2018 22:05:29 UTC-3, ZyX escreveu: >> >> 2018-02-23 1:43 GMT+03:00

Re: making custom key names for mappings

2018-02-25 Thread Renato Fabbri
Em sexta-feira, 23 de fevereiro de 2018 15:51:35 UTC-3, ZyX escreveu: > 2018-02-23 18:21 GMT+03:00 Renato Fabbri: > > Em quinta-feira, 22 de fevereiro de 2018 22:05:29 UTC-3, ZyX escreveu: > >> 2018-02-23 1:43 GMT+03:00 Renato Fabbri: > >> > Well, from your comments, i put a: > >> > > >> > let

Re: making custom key names for mappings

2018-02-23 Thread Nikolay Aleksandrovich Pavlov
2018-02-23 18:21 GMT+03:00 Renato Fabbri : > Em quinta-feira, 22 de fevereiro de 2018 22:05:29 UTC-3, ZyX escreveu: >> 2018-02-23 1:43 GMT+03:00 Renato Fabbri: >> > Well, from your comments, i put a: >> > >> > let g:aall = mapleader >> > " let mapleader = '' >> > if

Re: making custom key names for mappings

2018-02-23 Thread Renato Fabbri
Em quinta-feira, 22 de fevereiro de 2018 22:05:29 UTC-3, ZyX escreveu: > 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

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: 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

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

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