Re: terminal mode bracketed paste ?

2018-06-15 Thread M Kelly
> I cannot reproduce this when running Vim in a terminal window. > What do you run, zsh? How do you start it, with ":term zsh" or with > ":term" while 'shell' is set to "zsh"? > > And what terminal is Vim running in and what is 'term' set to? Hi, just :terminal my shell is zsh

Re: terminal mode bracketed paste ?

2018-06-15 Thread Bram Moolenaar
> > How exactly do you paste? > > first - > to get into normal mode > V, select a few lines moving around > yank > back to terminal mode > > then - > paste with ctrl-shift-v or with mouse middle button I cannot reproduce this when running Vim in a terminal window. What do you run, zsh? How

Re: terminal mode bracketed paste ?

2018-06-15 Thread M Kelly
> How exactly do you paste? first - to get into normal mode V, select a few lines moving around yank back to terminal mode then - paste with ctrl-shift-v or with mouse middle button thx, -m -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below

Re: terminal mode bracketed paste ?

2018-06-15 Thread Bram Moolenaar
Mark Kelly wrote: > It seems for me bracketed paste is not enabled in terminal mode. > If I copy a few lines then paste into my zsh outside of vim (in tmux) then > bracketed paste is enabled and the lines are not executed until I hit enter. > But if in terminal mode I paste then each line is

Re: terminal mode bracketed paste ?

2018-06-15 Thread M Kelly
> Vim does not enables bracketed paste mode if TERM=screen. > To enable bracketed paste mode when vim runs in tmux, you may add following > setting into .vimrc. > > if =~ "screen" > let _BE = "\e[?2004h" > let _BD = "\e[?2004l" > exec "set t_PS=\e[200~" > exec "set t_PE=\e[201~"

Re: Vim Patch broke pathogen?

2018-06-15 Thread Mike Lippert
I think this is the article I read that explained it well enough for me to replace pathogen: Vim: So long Pathogen, hello native package loading https://shapeshed.com/vim-packages/ On Friday, June 15, 2018 at 2:12:11 AM UTC-4, edes wrote: > el 2018-06-14 a las 20:34 Christian Brabandt escribió:

Re: How to insert text on current text position when I press key in vim in insert and normal mode?

2018-06-15 Thread Christian Brabandt
On Di, 12 Jun 2018, Gena Makhomed wrote: > But I can't understand what I need to write instead "echo". ESC in normal mode beeps (depending on your configuration it might also generate a visual bell or do nothing depending on various settings 'visualbell' 't_vb', 'belloff') Best, Christian --

Re: How to insert text on current text position when I press key in vim in insert and normal mode?

2018-06-15 Thread Ken Takata
Hi, 2018/6/15 Fri 9:26:22 UTC+9 Gena Makhomed wrote: > Web site http://vimdoc.sourceforge.net/htmldoc/help.html > was not updated from 2010 year - this is bug or feature? There are at least two Web help sites which are up to date: http://vimhelp.appspot.com/ https://vim-jp.org/vimdoc-en/

Re: Custom key bindings to :Termdebug

2018-06-15 Thread Bram Moolenaar
Uri Moszkowicz wrote: > The new :Termdebug in Vim 8.1 is great but it lacks usable key bindings > like I used to have with VimGDB. For those unfamiliar, VimGDB introduced a > GDB mode, which can be toggled with F7. When in GDB mode, the GDB shortcuts > were mapped so "u" sent "up", "d" sent

Re: terminal mode bracketed paste ?

2018-06-15 Thread IWAMOTO Kouichi
On Thu, 14 Jun 2018 19:46:45 -0700 (PDT) M Kelly wrote: > It seems for me bracketed paste is not enabled in terminal mode. > If I copy a few lines then paste into my zsh outside of vim (in tmux) then > bracketed paste is enabled and the lines are not executed until I hit enter. > But if in

Re: terminal mode bracketed paste ?

2018-06-15 Thread Christian Brabandt
On Do, 14 Jun 2018, M Kelly wrote: > Hi, > > It seems for me bracketed paste is not enabled in terminal mode. > If I copy a few lines then paste into my zsh outside of vim (in tmux) then > bracketed paste is enabled and the lines are not executed until I hit enter. > But if in terminal mode I

Re: Vim Patch broke pathogen?

2018-06-15 Thread Christian Brabandt
On Do, 14 Jun 2018, edes wrote: > > el 2018-06-14 a las 20:34 Christian Brabandt escribió: > > > You know, that you don't need pathogen anymore since Vim 8? > > I, for one, didn't... > > I began reading :h packages, and I would be very grateful if anyone could > suggest additional

Re: Vim Patch broke pathogen?

2018-06-15 Thread edes
el 2018-06-14 a las 20:34 Christian Brabandt escribió: > You know, that you don't need pathogen anymore since Vim 8? I, for one, didn't... I began reading :h packages, and I would be very grateful if anyone could suggest additional resources. -- -- -- You received this message from