element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Autodesk EAGLE
  • Products
  • More
Autodesk EAGLE
EAGLE User Support (English) External text editor - again
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Autodesk EAGLE to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 5 replies
  • Subscribers 183 subscribers
  • Views 1134 views
  • Users 0 members are here
Related

External text editor - again

Former Member
Former Member over 15 years ago

Had a crash on my machine last week. All the important stuff was backed up

so just an annoyance... Lost a few configuration files.

 

Went to re-install Eagle 5.11 and set Notpad++ as my external editor. Was

making me absolutely crazy as I would enter the path and next time the

program opened, path was corrupted.

 

This is what finally worked (copied from eaglerc but entered from control

panel - Options - User interface). note that the eaglerc entry has an extra

set of quote marks bounding the entire string.

Interface.ExternalTextEditor = ""c:\Program Files\Notepad+\Notepad+.exe"

"%F""

 

Every time opened Eagle, the editor string was showing \ otepad++...

 

Finally realized that Case was *important*

I had originally entered the string as "c:\program

files\notepad+\notepad+.exe" "%F"

 

Was able to duplicate this by putting the errant string into the external

text editor box.

 

Another one of life's little mysteries solved - Oppie

 

 

 

  • Sign in to reply
  • Cancel
  • kcadsoft
    kcadsoft over 15 years ago

    On 02/16/11 16:26, Oppie wrote:

    Had a crash on my machine last week. All the important stuff was backed up

    so just an annoyance... Lost a few configuration files.

     

    Went to re-install Eagle 5.11 and set Notpad++ as my external editor. Was

    making me absolutely crazy as I would enter the path and next time the

    program opened, path was corrupted.

     

    This is what finally worked (copied from eaglerc but entered from control

    panel - Options - User interface). note that the eaglerc entry has an extra

    set of quote marks bounding the entire string.

    Interface.ExternalTextEditor = ""c:\Program Files\Notepad+\Notepad+.exe"

    "%F""

     

    Every time opened Eagle, the editor string was showing \ otepad++...

     

    Finally realized that Case was *important*

    I had originally entered the string as "c:\program

    files\notepad+\notepad+.exe" "%F"

     

    Was able to duplicate this by putting the errant string into the external

    text editor box.

     

    Another one of life's little mysteries solved - Oppie

     

    Well, (ab)using the backslash ('\', which originally is an "escape" character)

    as the directory delimiter is one of Microsoft's "original sins" image

    The others are using "\r\n" (two separate bytes, 0x0D/0x0A) instead of

    a single '\n' (0x0A) as the line delimiter, and using the forward slash

    as the "option" marker instead of the dash ('-').

     

    Oh well...

     

    Klaus Schmidinger

    --

    _______________________________________________________________

     

    Klaus Schmidinger                       Phone: +49-8635-6989-10

    CadSoft Computer GmbH                   Fax:   +49-8635-6989-40

    Pleidolfweg 15                          Email:   kls@cadsoft.de

    D-84568 Pleiskirchen, Germany           URL:     www.cadsoft.de

    _______________________________________________________________

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 15 years ago in reply to kcadsoft

    Klaus Schmidinger schrieb:

     

    Well, (ab)using the backslash ('\', which originally is an "escape" character)

    as the directory delimiter is one of Microsoft's "original sins" image

    The others are using "\r\n" (two separate bytes, 0x0D/0x0A) instead of

    a single '\n' (0x0A) as the line delimiter, and using the forward slash

    as the "option" marker instead of the dash ('-').

     

    I think these other two have much longer histories than Microsoft

    itself, and every OS had its own separators those days. (For example, in

    CP/M the options started with square brackets.) The CRLF pair as line

    delimiter is really old and has its cause (teletypes would only feed a

    line, but won't start at its beginning, if given just the LF).

     

    In fact you feel the "right" way of doing something is the way you are

    used to, and your background obviously are *ix systems and their

    conventions.

     

    However, I agree that using the backslash as directory delimiter

    really is a sin - as is using case sensitivity in *ix systems and the

    C programming language. These "broken by design" details, however, will

    persist - it's far too late to change them now. :-\

     

    Tilmann

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 15 years ago in reply to Former Member

    "Tilmann Reh" <usenet2007nospam@autometer.de> wrote in message

    news:ijinj4$rnn$1@cheetah.cadsoft.de...

    Klaus Schmidinger schrieb:

     

     

    I see you are both old timers in the business also. Brought a smile to my

    face. Escape characters, CP/M and Teletypes... Think I'll read my intel

    i8008 programming/design manual again for old time's sake.

      Cheers

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • barrattk
    barrattk over 13 years ago

    I'm using Eagle 6.3.0 and I've just had a similar problem but the solution given by the OP did not work for me when accessing the setting via the 'Control Panel window -> Options -> User Interface ->External Text editor' setting

    I ran into problems with the %F quotes.

    In the end I used:

    "C:\Program Files (x86)\Notepad++\notepad++.exe" %F

    with no extra quotes

    Cheers,

    Keith

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • pacav69
    pacav69 over 9 years ago in reply to barrattk

    Using Sublime text editor as an external editor in eaglecad use the following including quotes and "%F" for file opening.

     

     

    for macs

     

    "/Applications/Sublime Text.app" "%F"

     

    for windows

     

    "C:\Program Files\Sublime Text 3\sublime_text.exe" "%F"

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube