ssh or other python editor

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • martijn@gamecreators.nl

    #1

    ssh or other python editor

    H!

    I'm using a windows machine.
    And a FreeBSD server where I run my python scripts.

    I'm working/making my python scripts in a windows OS with putty now.
    But I really want the python text colors and tab spacing like the
    python windows IDE but the problem is that I can't find a good program.

    Thanks

  • projecktzero

    #2
    Re: ssh or other python editor

    martijn@gamecre ators.nl wrote:[color=blue]
    > H!
    >
    > I'm using a windows machine.
    > And a FreeBSD server where I run my python scripts.
    >
    > I'm working/making my python scripts in a windows OS with putty now.
    > But I really want the python text colors and tab spacing like the
    > python windows IDE but the problem is that I can't find a good program.
    >
    > Thanks[/color]

    So you're using Putty to telenet/ssh into the FreeBSD server, but what
    editor on you using on the FreeBSD server?

    I use VIM on my Windows workstation to edit files on a linux server. I
    have a network drive mounted to the linux server. Samba needs to be
    running on the server. If the FreeBSD server has samba running, you can
    mount a drive and use your Python Windows IDE.

    If samba isn't available/set-up, you can try using FTP. You can then
    use Crimson Editor which does the syntax coloring and can ftp to/from a
    server.

    Comment

    • martijn@gamecreators.nl

      #3
      Re: ssh or other python editor

      >So you're using Putty to telenet/ssh into the FreeBSD server, but what[color=blue]
      >editor on you using on the FreeBSD server?[/color]

      I use pico for that.
      That Samba isn't available but I can install it.

      Or are there other editors for FreeBSD that I can run with putty ?

      I'm going googling arround again,
      Thanks.

      Comment

      • martijn@gamecreators.nl

        #4
        Re: ssh or other python editor

        googling arround give me a full list of python editors and other stuff


        Comment

        • Fredrik Lundh

          #5
          Re: ssh or other python editor

          "projecktze ro" wrote:
          [color=blue]
          > If samba isn't available/set-up, you can try using FTP. You can then
          > use Crimson Editor which does the syntax coloring and can ftp to/from a
          > server.[/color]

          are you guys for real?

          is there any major text editor for Unix that doesn't support Python syntax
          coloring and indentation these days?

          </F>



          Comment

          • martijn@gamecreators.nl

            #6
            Re: ssh or other python editor

            - I'm a newbie at freeBSD so I think there is , but I don't know where.
            And i'm using putty on a windows OS what don't understand the syntax
            coloring.

            Comment

            • Fredrik Lundh

              #7
              Re: ssh or other python editor

              martijn@gamecre ators.nl wrote:[color=blue]
              >- I'm a newbie at freeBSD so I think there is , but I don't know where.[/color]

              I just complained when someone included the entire message thread in their
              replies, but not including anything at all is pretty annoying too.
              [color=blue]
              > And i'm using putty on a windows OS what don't understand the syntax
              > coloring.[/color]

              Putty isn't doing any syntax coloring; it just draws things in the color specified
              by your editor. If you don't get any colors, it's probably because your editor
              isn't properly configured. Explicitly setting the TERM variable to "xterm" might
              help:



              (but I'm pretty sure ssh does this for you, so it's probably an editor configuration
              issue. checking the FAQ for your editor might be a good idea)

              </F>



              Comment

              • Grant Edwards

                #8
                Re: ssh or other python editor

                On 2005-10-04, martijn@gamecre ators.nl <martijn@gamecr eators.nl> wrote:
                [color=blue]
                > I'm working/making my python scripts in a windows OS with putty now.
                > But I really want the python text colors and tab spacing like the
                > python windows IDE but the problem is that I can't find a good program.[/color]

                Jed, Emacs, and Vim all have Python modes. I'm sure most
                decent programming editors do by now.

                --
                Grant Edwards grante Yow! Yow! Now we can
                at become alcoholics!
                visi.com

                Comment

                • Graham  Fawcett

                  #9
                  Re: ssh or other python editor

                  martijn@gamecre ators.nl wrote:[color=blue][color=green]
                  > >So you're using Putty to telenet/ssh into the FreeBSD server, but what
                  > >editor on you using on the FreeBSD server?[/color]
                  >
                  > I use pico for that.
                  > That Samba isn't available but I can install it.
                  >
                  > Or are there other editors for FreeBSD that I can run with putty ?[/color]

                  I use Emacs on my win32 workstation to edit files on my Linux servers
                  via SSH. There are at least two Emacs third-party modules ("modes") --
                  Tramp and Hobo -- that allow you to edit files over SSH.

                  I use Hobo (never tried Tramp, I think it's for XEmacs anyway). There
                  is a bit of setup. You'll need to use "pageant" and authenticate by
                  RSA/DSA key. See PuTTY's Web site; you may also need to do some
                  Googling to set up agent-based authentication. Note that pageant will
                  make PuTTY authenticate automatically as well, so it's easy to test
                  whether your pageant setup is correct, apart from any Emacs-related
                  issues.

                  You might also need to configure Hobo slightly; email me if you want my
                  configuration details (though I can't help you with the
                  pageant/authentication stuff, so get that done first :-).

                  Once you're done, you can load, edit and save files quite
                  transparently. Not everybody's cup of tea, but there you are. :-)

                  Graham

                  Comment

                  • Mike Meyer

                    #10
                    Re: ssh or other python editor

                    "Fredrik Lundh" <fredrik@python ware.com> writes:[color=blue]
                    > martijn@gamecre ators.nl wrote:[color=green]
                    >>- I'm a newbie at freeBSD so I think there is , but I don't know where.[/color]
                    > Putty isn't doing any syntax coloring; it just draws things in the color specified
                    > by your editor. If you don't get any colors, it's probably because your editor
                    > isn't properly configured. Explicitly setting the TERM variable to "xterm" might
                    > help:
                    >
                    > http://www.chiark.greenend.org.uk/~s....html#faq-term[/color]

                    According to the FAQ, putty sets it to xterm. I use xter-color on
                    FreeBSD.

                    <mike
                    --
                    Mike Meyer <mwm@mired.or g> http://www.mired.org/home/mwm/
                    Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.

                    Comment

                    • jussij@zeusedit.com

                      #11
                      Re: ssh or other python editor

                      > I'm working/making my python scripts in a windows OS[color=blue]
                      > with putty now.[/color]

                      If you need an FTP editor take a look at Zeus:

                      A powerful, feature packed, fully configurable IDE specifically designed for Windows developers....


                      Zeus will do SSH, SSL/TLS and plain old FTP editing, with
                      support for Unix, Windows, VM and MVS FTP servers.

                      Just remember to setup your host configuration, otherwise
                      it will default to the FTP protocol.
                      [color=blue]
                      > But I really want the python text colors and tab
                      > spacing like the python windows IDE but the problem
                      > is that I can't find a good program.[/color]

                      Zeus does Python syntax highlighting, code folding, class
                      browsing, smart indenting, project/workspace management etc
                      etc.

                      You can even write Zeus macros in Pyhton :)

                      Note: Zeus is shareware (45 day trial).

                      Jussi Jumppanen
                      Author: Zeus for Windows

                      Comment

                      Working...