Re: how to get gvim to open a file over ssh?

2007-05-07 Thread Brian McKee

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 4-May-07, at 3:07 PM, ben lieb wrote:

In ubuntu linux:
I have a remote (ssh) connection through nautilus (gui file manager).
When I right-click a file, I can open, edit and save the file in "text
editor" without any problem. When I open the file in gvim, it is  
empty.


What can I do to solve this?


I kept a copy of this thread from March but haven't looked into it  
any further.
I think it might fix you up - please let me know if you decide to try  
it out how it works

Brian

-  
- -

Andrea Ratto wrote:

I think we are missing some easy integration with gnome desktop.  
Here is

how I got to think so:

I was working with some files on a remote folder using nautilus and
noticed I could open remote text files with gedit transparently; but
that did not work with gvim.
I knew vim can handle editing over ssh, and I would really value
clicking on a remote file and have it opened in gvim instead of  
gedit.


To cut a long story short I ended up in making this small script
under /usr/local/bin

#!/bin/bash

if [[ $# = 0 || $# = 1 && $1 = "-f" ]]; then
  /usr/bin/gvim $1
else
  /usr/bin/gvim --remote-tab `echo $@ | sed 's/-f//' | sed 's/ssh:
\/\/\(\w\+\)@\(\w\+\)\//scp:\/\/[EMAIL PROTECTED]/\//gi'`
fi

And now gvim behaves just like gedit!
I can open files from nautilus in the existing gvim session and open
files from a ssh folder. I like this behaviour and I think that very
little work is necessary to implement such features in the official
gvim, at least in the one with gnome support.

Basically what we need to get this quikly is:

1: have netrw handle links like ssh:[EMAIL PROTECTED]/folder/file just  
like it

handles scp:[EMAIL PROTECTED]//folder/file. May require similar changes for
other protocols as well.
2: allow --remote-tab with no argument to open a blank gvim session
instead of failing



what about --remote-tab-silent ?



It's better because does not produce useless output, but still  
works the
same way. Thanks for pointing it out, my example script should use  
that,

but the way it works it's not going to change.


3: change the exec line of the gvim.desktop from "gvim -f %U" to  
"gvim

-f -p --remote-tab %F"



IIUC, that's not a change in Vim. It may be a change in the Vim  
package in
your Linux distro if it installs that Vim shortcut. The "make  
install" from
the "official" Vim installation (as downloaded straight from  
ftp.vim.org )

installs no keyboard shortcut.



It's a menu entry not a keyboard shortcut. It sets the code to be run
when you open a file by clicking on it or when you click the gvim  
icon.




But IMHO those --remote-tab and -p parameters
shouldn't be there by default. I don't know the difference between  
%U and %F.



%U does one invocation per file opened,
like gvim fileone; gvim filetwo ...
%F does one invocation with all files as arguments
like gvim fileone filetwo ...



Even better: we could add some internal options like ":set  
remotetabs"

and ":set openintabs" so that this behavior can be set on a per user
basis. This would be elegant and could work with "gvim -f %F" exec
command in the .dekstop file.



I'm skeptical about the usefulness of such additional options.



Could you use gedit for a while, with multiple files? This may explain
the point better.




I'd like to know your opinions about this.

PS: it also seems that --remote-tab does play well with gnome
startup-notification when a session is already opened, but this  
is just

a cosmetic bug.



The fact that it does indeed play well is a cosmetic bug ???  
There's something

there that I don't quite grasp.



After opening in a remote tab from gnome the cursor is set to the  
"busy"

state even after the file is fully loaded. I don't want to insist on
this right now since it's probably easy to fix and it's just cosmetic.


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (Darwin)
Comment: Verify this email or encrypt your email for free - see gnupg.org

iD8DBQFGP0VUGnOmb9xIQHQRAjSNAJ0Z5bF8afj9SLNHS1KxME3iIoPNlQCfQp+4
Cf/6+Z/KGW4QvQn+YBNxIIY=
=odjM
-END PGP SIGNATURE-


Re: how to get gvim to open a file over ssh?

2007-05-05 Thread Martin Krischik
Am Freitag 04 Mai 2007 schrieb A.J.Mechelynck:

> IIUC, in this case every transfer requires inputting a username and
> password -- at least if you cannot configure the server and client
> yourself, see

I never type a password wenn using netrw. See:

http://en.wikipedia.org/wiki/Ssh-agent

Wikipedia is - of course - only a description. You need to follow the further 
links for setup informations.

Martin

-- 
Martin Krischik
mailto://[EMAIL PROTECTED]


signature.asc
Description: This is a digitally signed message part.


Re: how to get gvim to open a file over ssh?

2007-05-04 Thread A.J.Mechelynck

ben lieb wrote:

In ubuntu linux:

I have a remote (ssh) connection through nautilus (gui file manager).
When I right-click a file, I can open, edit and save the file in "text
editor" without any problem. When I open the file in gvim, it is empty.

What can I do to solve this?

Thanks for any help



Method I: Edit a local copy, and download/upload it as a separate step.

Method II: see
:help netrw.txt
:help netrw-start
:help netrw-scp
:help netrw-externapp
:help netrw-read
:help netrw-write

IIUC, in this case every transfer requires inputting a username and password 
-- at least if you cannot configure the server and client yourself, see

:help netrw-listhack

Best regards,
Tony.
--
If little green men land in your back yard, hide any little green women
you've got in the house.
-- Mike Harding, "The Armchair Anarchist's Almanac"


how to get gvim to open a file over ssh?

2007-05-04 Thread ben lieb
In ubuntu linux:

I have a remote (ssh) connection through nautilus (gui file manager).
When I right-click a file, I can open, edit and save the file in "text
editor" without any problem. When I open the file in gvim, it is empty.

What can I do to solve this?

Thanks for any help