diff --git a/doc/command-t.txt b/doc/command-t.txt index df751578..48dce16c 100644 --- a/doc/command-t.txt +++ b/doc/command-t.txt @@ -551,18 +551,28 @@ COMMANDS *command-t-commands* MAPPINGS *command-t-mappings* -By default Command-T comes with only two mappings: +By default Command-T comes with only three mappings: - t bring up the Command-T file window - b bring up the Command-T buffer window + *(CommandT)* -However, Command-T won't overwrite a pre-existing mapping so if you prefer +t bring up the Command-T file window + + *(CommandTBuffer)* + +b bring up the Command-T buffer window + + *(CommandTJump)* + +j bring up the Command-T jumplist window + +Note that Command-T won't overwrite a pre-existing mapping so if you prefer to define different mappings use lines like these in your `~/.vimrc`: - nnoremap t :CommandT - nnoremap b :CommandTBuffer + nnoremap t (CommandT) + nnoremap b (CommandTBuffer) + nnoremap j (CommandTJump) -Replacing "t" or "b" with your mapping of choice. +Replacing "t", "b" or "j" with your mapping of choice. Note that in the case of MacVim you actually can map to Command-T (written as in Vim) in your `~/.gvimrc` file if you first unmap the existing menu @@ -570,7 +580,7 @@ binding of Command-T to "New Tab": if has("gui_macvim") macmenu &File.New\ Tab key= - map :CommandT + map (CommandT) endif When the Command-T window is active a number of other additional mappings @@ -1418,6 +1428,10 @@ HISTORY *command-t-history* - don't clobber |alternate-file| name when opening Command-T match listing (patch from Jerome Castaneda) - add |g:CommandTCursorColor| option +- expose mappings for |:CommandT| and |:CommandTBuffer| using `` + mappings |(CommandT)| and |(CommandT)| +- add `j` mapping to |:CommandTJump|, via |(CommandTJump)| + (defined only if no pre-existing mapping exists) 1.13 (29 April 2015)