Thursday, October 25, 2012

Re: copy from gvim and paste it some where else.. help..

On Thu, Oct 25, 2012 at 7:36 PM, sathyashrayan <sathyashrayan@gmail.com> wrote:
> Another update. When i delete the vimrc and use the gvim without any vimrc config then the copy paste problem solved..
Please don't top post.

> On Thursday, 25 October 2012 17:43:45 UTC+5:30, Christian Brabandt wrote:
>> On Thu, October 25, 2012 14:07, sathyashrayan wrote:
>>
>> >> On 10/25/12 05:48, sathyashrayan wrote:
>>
>> >> > could not copy anything from my gvim and paste it in firefox,
>>
>> >>
>>
>> > I did :version and i got the following.
>>
>> >
>>
>> > VIM - Vi IMproved 7.3 (2010 Aug 15, compiled May 4 2012 04:10:09)
>>
>> > Included patches: 1-429
>>
>> > Modified by pkg-vim-maintainers@lists.alioth.debian.org
>>
>> > Compiled by buildd@
>>
>> > Huge version with GTK2-GNOME GUI. Features included (+) or not (-):
>>
>> > +arabic +autocmd +balloon_eval +browse ++builtin_terms +byte_offset
>>
>> > +cindent +clientserver +clipboard +cmdline_compl +cmdline_hist
>>
>> > +cmdline_info +comments +conceal
>>
>> > +cryptv +cscope +cursorbind +cursorshape +dialog_con_gui +diff +digraphs
>>
>> > +dnd -ebcdic +emacs_tags +eval +ex_extra +extra_search +farsi
>>
>> > +file_in_path +find_in_path
>>
>> > +float +folding -footer +fork() +gettext -hangul_input +iconv
>>
>> > +insert_expand +jumplist +keymap +langmap +libcall +linebreak +lispindent
>>
>> > +listcmds +localmap +lua
>>
>> > +menu +mksession +modify_fname +mouse +mouseshape +mouse_dec +mouse_gpm
>>
>> > -mouse_jsbterm +mouse_netterm -mouse_sysmouse +mouse_xterm +mouse_urxvt
>>
>> > +multi_byte
>>
>> > +multi_lang -mzscheme +netbeans_intg +path_extra +perl +persistent_undo
>>
>> > +postscript +printer +profile +python -python3 +quickfix +reltime
>>
>> > +rightleft +ruby
>>
>> > +scrollbind +signs +smartindent -sniff +startuptime +statusline
>>
>> > -sun_workshop +syntax +tag_binary +tag_old_static -tag_any_white +tcl
>>
>> > +terminfo +termresponse
>>
>> > +textobjects +title +toolbar +user_commands +vertsplit +virtualedit
>>
>> > +visual +visualextra +viminfo +vreplace +wildignore +wildmenu +windows
>>
>> > +writebackup +X11
>>
>> > -xfontset +xim +xsmp_interact +xterm_clipboard -xterm_save
>>
>> >
>>
>> > I think it has
>>
>> >
>>
>> > +clipboard
>>
>> > +X11
>>
>> > +xterm_clipboard
>>
>> >
>>
>> > in it. Any other help?
>>
>>
>>
>> It would help if you can give us a step by step example, what you did
>>
>> what you expected and what happened.
>>
>>
>>
>> regards,
>>
>> Christian

A quick glance and your ~/.vim_runtime/vimrc (sourced in .vimrc)
shows.. that it is quite huge! Nearly 700 lines of code. Lots of
things might be going wrong there, have you checked it? If not, take
time to see if there are parts that you really need - and retain only
those.

I did see:
set clipboard=unnamed
..this is normally ok.. It must use '*' register as clipboard. Try
checking the behavior without this line. Or try other options for
clipboard (see :help 'clipboard')

I also saw and wouldn't recommend the following:
" Turn backup off, since most stuff is in SVN, git anyway...
set nobackup
set nowb
set noswapfile

Having git/SVN is one thing, and turning of swap/backup is entirely
different thing. Swap files protect against vim/OS crashes. SVN/git is
for version control.

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

No comments: