Thread: Source Code Editor

  1. #1
    Registered User manofsteel972's Avatar
    Join Date
    Mar 2004
    Posts
    317

    Source Code Editor

    I know there are a lot of source code editors out there already. I thought it would be a nice challenge to write my own. I was thinking of a simple console project. I have looked at some of the features from several editors already out there but wanted to ask if anyone can think of any features that they would like to see in an editor but have yet to find in one. Most already have syntax highlighting, undo/redo, and stuff you find in most basic text editor. Just curious if you have any suggestions for some features that would make programming easier, faster, and more efficient.
    "Knowledge is proud that she knows so much; Wisdom is humble that she knows no more."
    -- Cowper

    Operating Systems=Slackware Linux 9.1,Windows 98/Xp
    Compilers=gcc 3.2.3, Visual C++ 6.0, DevC++(Mingw)

    You may teach a person from now until doom's day, but that person will only know what he learns himself.

    Now I know what doesn't work.

    A problem is understood by solving it, not by pondering it.

    For a bit of humor check out xkcd web comic http://xkcd.com/235/

  2. #2
    i dont know Vicious's Avatar
    Join Date
    May 2002
    Posts
    1,200
    Console?
    You mean like the old BASIC editors?
    That would be pretty interesting.

    I think a neat little feature would be:
    The ability to make a function and save it to a "clipboard" and set up hot keys to access these different functions.

    Example: Like if your making a Win32 app you can set up these functions to use as you need them instead of just using a premade source file/template

  3. #3
    Registered User
    Join Date
    Sep 2001
    Posts
    4,912
    An excellent idea. Also - I really like the feature in VS where as you type a namespace it suggests things that are listed in your references file. Extend this to reserved words, etc...

    edit: Why is this on the C++ board. Mods?

  4. #4
    Banned
    Join Date
    May 2004
    Posts
    55
    Hey, some hotkeys wouldn't be wrong, like
    if(press.key==VK_F1)
    {
    write #include <iostream.h>
    }
    lol

  5. #5
    Crazy Fool Perspective's Avatar
    Join Date
    Jan 2003
    Location
    Canada
    Posts
    2,640
    i suggest having a look a pico or nano. they are both (the same?) simple console based text editors. Of course, you could always check out vi too.

    http://www.nano-editor.org/

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Seven Kingdoms I: Ancient Adversaries for Linux
    By MIH1406 in forum Projects and Job Recruitment
    Replies: 13
    Last Post: 01-17-2010, 05:03 PM
  2. How do you call another source code file?
    By nifear4 in forum C Programming
    Replies: 2
    Last Post: 10-28-2008, 12:16 PM
  3. 'Type' Error on Build of Officially Released Source Code
    By Jedi_Mediator in forum C++ Programming
    Replies: 5
    Last Post: 07-07-2008, 05:28 PM
  4. How to make a program that prints it's own source code???
    By chottachatri in forum C++ Programming
    Replies: 38
    Last Post: 03-28-2008, 07:06 PM
  5. Search for patterns in source code
    By MiamiCuse in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 10-23-2005, 11:28 PM