Skip to content

Commit

Permalink
change double into single quote to make search in right column
Browse files Browse the repository at this point in the history
  • Loading branch information
Konfekt authored Apr 4, 2019
1 parent fb87b22 commit b0dba40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/ctrlp/yankround.vim
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ unlet s:CTRLP_BUILTINS
"======================================
function! s:_cache_to_ctrlpline(str) "{{{
let entry = matchlist(a:str, "^\\(.\\d*\\)\t\\(.*\\)")
return strtrans(entry[2])
return s:_change_regmodechar(entry[1]) . '\t' . strtrans(entry[2])
endfunction
"}}}
function! s:_change_regmodechar(char) "{{{
Expand Down

0 comments on commit b0dba40

Please sign in to comment.