Skip to content

Commit

Permalink
Add more details to comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
dstein64 committed Jan 2, 2021
1 parent 0e8f1b4 commit 98b047b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/win.vim
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ function! s:GetChar()
if type(l:char) ==# v:t_number
let l:char = nr2char(l:char)
endif
" On Cygwin, <c-c> does not raise "Vim:Interrupt", so it would still be
" <c-c> at this point. Convert to <esc>.
" On Cygwin, pressing <c-c> during getchar() does not raise "Vim:Interrupt",
" so it would still be <c-c> at this point. Convert to <esc>.
if l:char ==# "\<c-c>"
let l:char = "\<esc>"
endif
Expand Down

0 comments on commit 98b047b

Please sign in to comment.