From: Iain Patterson Date: Mon, 6 Feb 2006 12:58:37 +0000 (+0000) Subject: Use Q... instead of ,... for commands. X-Git-Url: http://git.iain.cx/?p=profile.git;a=commitdiff_plain;h=cc26e7919284779febb332c3f96b24575403e21d Use Q... instead of ,... for commands. git-svn-id: https://svn.cambridge.iain.cx/profile/trunk@24 6be0d1a5-5cfe-0310-89b6-964be062b18b --- diff --git a/.vimrc b/.vimrc index ba4ec76..4cc55d4 100755 --- a/.vimrc +++ b/.vimrc @@ -98,18 +98,21 @@ fun! Show_Tabstop() return &ts endfun -" Swap hex/decimal statusline with ,x -map ,x :call Cycle_StatusLine(): -" Swap case-sensitivity with ,c. -map ,c :call Invert_Case(): -" Cycle list styles with ,l. -map ,l :call Cycle_List(): -" Change to ts=2 with ,2. -map ,2 :se ts=2: -" Change to ts=4 with ,4. -map ,4 :se ts=4: -" Change to ts=8 with ,8. -map ,8 :se ts=8: +" Clear Q as we will use it for commands. +map Q + +" Swap hex/decimal statusline with Qx +map Qx :call Cycle_StatusLine(): +" Swap case-sensitivity with Qc. +map Qc :call Invert_Case(): +" Cycle list styles with Ql. +map Ql :call Cycle_List(): +" Change to ts=2 with Q2. +map Q2 :se ts=2: +" Change to ts=4 with Q4. +map Q4 :se ts=4: +" Change to ts=8 with Q8. +map Q8 :se ts=8: call Cycle_StatusLine()