Skip to content

Commit

Permalink
Use <c-j> to show file info (was <c-i>)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtom committed Oct 23, 2015
1 parent 3c4ba3c commit ee34bd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autoload/tmru.vim
Expand Up @@ -2,8 +2,8 @@
" @Author: Tom Link (mailto:micathom AT gmail com?subject=[vim])
" @License: GPL (see http://www.gnu.org/licenses/gpl.txt)
" @Created: 2011-04-10.
" @Last Change: 2015-07-29.
" @Revision: 330
" @Last Change: 2015-10-22.
" @Revision: 332


if !exists('g:tmru#set_filename_indicators')
Expand All @@ -29,7 +29,7 @@ if !exists('g:tmru#world') "{{{2
\ {'key': 6, 'agent': 'tmru#CheckFilenames', 'key_name': '<c-f>', 'submenu': 'Edit', 'help': 'Check file name(s)'},
\ {'key': "\<del>", 'agent': 'tmru#RemoveItem', 'key_name': '<del>', 'submenu': 'Edit', 'help': 'Remove file name(s)'},
\ {'key': "\<c-cr>", 'agent': 'tmru#Drop', 'key_name': '<c-cr>', 'help': 'Drop to file name'},
\ {'key': 9, 'agent': 'tlib#agent#ShowInfo', 'key_name': '<c-i>', 'help': 'Show info'},
\ {'key': 10, 'agent': 'tlib#agent#ShowInfo', 'key_name': '<c-i>', 'help': 'Show info'},
\ {'key': 19, 'agent': 'tlib#agent#EditFileInSplit', 'key_name': '<c-s>', 'help': 'Edit files (split)'},
\ {'key': 22, 'agent': 'tlib#agent#EditFileInVSplit', 'key_name': '<c-v>', 'help': 'Edit files (vertical split)'},
\ {'key': 20, 'agent': 'tlib#agent#EditFileInTab', 'key_name': '<c-t>', 'help': 'Edit files (new tab)'},
Expand Down

2 comments on commit ee34bd2

@blueyed
Copy link
Contributor

@blueyed blueyed commented on ee34bd2 Mar 6, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tomtom
Why was this changed?

  1. the key_name was not changed accordingly.
  2. https://github.com/tomtom/tlib_vim/blob/9734d8d9e4f7b7b91272123463a62759aef31556/autoload/tlib/input.vim#L123-L126 does not work anymore to use ctrl-j/k for prev/next in general.

@tomtom
Copy link
Owner Author

@tomtom tomtom commented on ee34bd2 Mar 6, 2016 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.