Skip to content

Commit

Permalink
- Merged.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jul 11, 2011
2 parents 028d07f + 1dc9bfd commit 010d983
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion autoload/vimshell/interactive.vim
@@ -1,7 +1,11 @@
"============================================================================= "=============================================================================
" FILE: interactive.vim " FILE: interactive.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com> " AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
<<<<<<< HEAD
" Last Modified: 12 Jul 2011. " Last Modified: 12 Jul 2011.
=======
" Last Modified: 11 Jul 2011.
>>>>>>> 1dc9bfd77f95a72515b6e9110a52e6b8f66e50da
" License: MIT license {{{ " License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining " Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the " a copy of this software and associated documentation files (the
Expand Down Expand Up @@ -78,10 +82,10 @@ endfunction"}}}


function! vimshell#interactive#execute_pty_inout(is_insert)"{{{ function! vimshell#interactive#execute_pty_inout(is_insert)"{{{
let l:in = vimshell#interactive#get_cur_line(line('.')) let l:in = vimshell#interactive#get_cur_line(line('.'))
call vimshell#history#append(l:in)
if l:in !~ "\<C-d>$" if l:in !~ "\<C-d>$"
let l:in .= "\<LF>" let l:in .= "\<LF>"
endif endif
call vimshell#history#append(l:in)


call s:send_string(l:in, a:is_insert, line('.')) call s:send_string(l:in, a:is_insert, line('.'))
endfunction"}}} endfunction"}}}
Expand Down
3 changes: 3 additions & 0 deletions doc/vimshell.txt
Expand Up @@ -220,6 +220,9 @@ CHANGELOG *vimshell-changelog*
2011-07-12 2011-07-12
- Fixed :VimShellSendString error. - Fixed :VimShellSendString error.


2011-07-11
- Fixed save interactive history.

2011-07-10 2011-07-10
- Fixed cd internal command. - Fixed cd internal command.


Expand Down

0 comments on commit 010d983

Please sign in to comment.