fREW wrote:
So is there a way we could swap the ; and : keys? I hardly ever use ";" but it would be nice to still have it available as :
The following lines in your vimrc should do it:
noremap ; :
noremap : ;
Using "noremap" rather than "map" avoids an infinite loop because the {rhs} is
not examined for mappable keys.
Best regards, Tony. -- Heuristics are bug ridden by definition. If they didn't have bugs, then they'd be algorithms.
