Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: Editors of choice and the people who use them

  1. #1
    Join Date
    Jun 2008
    Beans
    58

    Editors of choice and the people who use them

    I have a question in regards to programming and editors. I am trying to learn programming basics on my own from what I can find on the internet. What's the opinion on editors?


    I have installed the ones I read about.

    Emacs
    vim
    nano
    Idle
    Gedit

    Which is best for learning?

    Can anyone also point me to a good source for learning how to write code? I would greatly appreciate it.


    Thanks,
    John

  2. #2
    Join Date
    Jan 2007
    Location
    ~/SC/USA
    Beans
    1,969
    Distro
    Ubuntu

    Re: Editors of choice and the people who use them

    What language do you want to learn?

  3. #3
    Join Date
    Apr 2007
    Beans
    14,781

    Re: Editors of choice and the people who use them

    Quote Originally Posted by johnhdsi View Post
    I have a question in regards to programming and editors. I am trying to learn programming basics on my own from what I can find on the internet. What's the opinion on editors?

    Can anyone also point me to a good source for learning how to write code? I would greatly appreciate it.
    Check out the Programming Talk forum and its stickies. http://ubuntuforums.org/forumdisplay.php?f=39

    Ubuntu comes with Gedit and Gedit has a lot of plugins in the repos and is a natural starting editor (in fact, I still use it)

    http://ubuntuforums.org/showthread.php?t=839955

  4. #4
    Join Date
    Apr 2008
    Location
    RiceMonsterland, Canada
    Beans
    Hidden!

    Re: Editors of choice and the people who use them

    Nano is good CLI editor for begginers, though I highly reccomend you learn vim, as it's highly efficient. However, there's a few lines you have to comment out in the vimrc in Ubuntu because the default vim on Ubuntu SUCKS. I think it's something like "set compatible" and then there's another one that makes the text bold and easier on the eyes. I don't remeber right now, and I'm not using Ubuntu right now, so I can't tell you.
    Code:
    while true; do echo -n "RiceMonster "; done
    Best thread ever

  5. #5
    Join Date
    Apr 2007
    Beans
    14,781

    Re: Editors of choice and the people who use them

    Quote Originally Posted by RiceMonster View Post
    Nano is good CLI editor for begginers, though I highly reccomend you learn vim, as it's highly efficient. However, there's a few lines you have to comment out in the vimrc in Ubuntu because the default vim on Ubuntu SUCKS. I think it's something like "set compatible" and then there's another one that makes the text bold and easier on the eyes. I don't remeber right now, and I'm not using Ubuntu right now, so I can't tell you.
    The default vim in Ubuntu is "vim-tiny".

    Run:

    Code:
    sudo aptitude install vim
    To get the full experience.

  6. #6
    Join Date
    Oct 2007
    Location
    $LOCATION
    Beans
    733

    Re: Editors of choice and the people who use them

    You should also enable syntax highlighting in .vimrc but I am not sure how to do that, arch does it by default
    hp dv6395 ea 2gb ram core 2 duo 2.00 Ghz archlinux User | Arch rocks! | Submit Bug Reports! https://launchpad.net/ubuntu | Include detail in your thread titles!

  7. #7
    Join Date
    Mar 2007
    Location
    Istanbul, Turkey
    Beans
    1,725
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Editors of choice and the people who use them

    You can't go wrong with Geany, which has extra functionalities like syntax highlighting, building, compiling and running programs, be it c, c++, python, etc.
    http://geany.uvena.de/

    If you are asking for a genral advice on which programming language to learn, I can safely suggest Python:
    http://ubuntuforums.org/showpost.php...24&postcount=4

  8. #8
    Join Date
    Mar 2007
    Location
    Istanbul, Turkey
    Beans
    1,725
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Editors of choice and the people who use them

    Quote Originally Posted by MONODA View Post
    You should also enable syntax highlighting in .vimrc but I am not sure how to do that, arch does it by default
    For highligthing and enabling other options in vim:
    http://ubuntuforums.org/showpost.php...55&postcount=2

  9. #9
    Join Date
    Apr 2007
    Location
    Villages at Mt Hood, OR
    Beans
    36

    Re: Editors of choice and the people who use them

    I'd also check out Kate. I'm not sure as to how it fairs in non-webpage code, but it has a different "tweak" on the interface than Gedit.

  10. #10
    Join Date
    Apr 2007
    Beans
    14,781

    Re: Editors of choice and the people who use them

    Quote Originally Posted by MONODA View Post
    You should also enable syntax highlighting in .vimrc but I am not sure how to do that, arch does it by default
    With vim-tiny, you can't have syntax highlighting. Installing "vim" will get you that by default.

    Quote Originally Posted by erginemr View Post
    You can't go wrong with Geany, which has extra functionalities like syntax highlighting, building, compiling and running programs, be it c, c++, python, etc.
    http://geany.uvena.de/
    That has nothing that Vim doesn't have or Gedit

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •