OpenRoad style for Notepad++

432 views
Skip to first unread message

Allan Biggs

unread,
May 27, 2016, 6:21:57 AM5/27/16
to openroa...@googlegroups.com


Does anyone have an OpenRoad style for Notepad++  e.g. there is a Fortran , C , C++ , SQL template style for the Language sensitive parts of Notepad++

Allan


This communication is for use by the intended recipient and contains
information that may be Privileged, confidential or copyrighted under
applicable law. If you are not the intended recipient, you are hereby
formally notified that any use, copying or distribution of this e-mail,
in whole or in part, is strictly prohibited. Please notify the sender by
return e-mail and delete this e-mail from your system. Unless explicitly
and conspicuously designated as "E-Contract Intended", this e-mail does
not constitute a contract offer, a contract amendment, or an acceptance
of a contract offer. This e-mail does not constitute a consent to the
use of sender's contact information for direct marketing purposes or for
transfers of data to third parties.

Francais Deutsch Italiano  Espanol  Portugues  Japanese  Chinese  Korean

          http://www.DuPont.com/corp/email_disclaimer.html

Peter van Bennekom

unread,
May 27, 2016, 10:48:14 AM5/27/16
to openroa...@googlegroups.com

I have one for UltraEdit…

 

Infor

Peter van Bennekom | Architect, Sr. Principal

office: 610 407 8113 | fax: 610 407 8181 | peter.va...@infor.com | http://www.infor.com

--
You received this message because you are subscribed to the Google Groups "OpenROAD Users Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openroad-user...@googlegroups.com.
To post to this group, send email to openroa...@googlegroups.com.
Visit this group at https://groups.google.com/group/openroad-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/openroad-users/OFA45F9520.A931290F-ON80257FC0.0038A1DF-80257FC0.0038EFDC%40CDCLN05.LVS.DUPONT.COM.
For more options, visit https://groups.google.com/d/optout.

adr...@octavo2.demon.co.uk

unread,
May 27, 2016, 11:40:20 AM5/27/16
to openroa...@googlegroups.com

Hi

 

I got these from Bodo some time ago.

 

It gives you syntax highlighting and autocomplete.

 

With the API for N++ I  suspect you could write something to connect to the catalogues for an OpenROAD application.

 

Not got round to that yet.

 

Cheers

 

Adrian

 

 

 

 

Hi Adrian,

 

Attached are new versions of the two OR syntax files for Notepad++.

Corrections made:

·         Added some missing class names

·         Removed some duplicate keywords

·         Removed “rubbish” at the end of OpenROAD.xml

 

Regards,

Bodo.

image001.gif
OpenROAD_UDL.XML
OpenROAD.XML

Allan Biggs

unread,
May 27, 2016, 12:21:51 PM5/27/16
to openroa...@googlegroups.com
Thanks ... isn't there an environment variable that opens your own editor ?

I was going to do a cut and past for a particularly big scipt
--
Sent from my Android phone with mail.com Mail. Please excuse my brevity.

Allan Biggs

unread,
May 27, 2016, 12:26:38 PM5/27/16
to openroa...@googlegroups.com, Peter.va...@infor.com
Peter,
I haven't tried ultra edit I like notepad++ for many reasons but the multiple versioning/ backup has saved me a few times
Thanks I'll give it a whirl and might be back
Allan
--
Sent from my Android phone with mail.com Mail. Please excuse my brevity.

adr...@octavo2.demon.co.uk

unread,
May 27, 2016, 12:43:03 PM5/27/16
to openroa...@googlegroups.com

Is this what you mean:

 

II_W4GL_SYSTEMEDITOR=TRUE

 

And

 

II_WINDOWEDIT="C:\Program Files\TextPad 4\Textpad.exe" -t"%t" "%f(%l)"

 

N++ has no command line flag for %t (component title) %f = filename i.e. wa12345.e01 etc

 

So for N++ something like

 

II_WINDOWEDIT=" "c:\Program Files (x86)\Notepad++\notepad++.exe""  "%f"

 

Sorry I’m not at a workstation with N++ on it.

 

Cheers

 

Adrian

use of sender's contact information for direct marketing purposes or for

Allan Biggs

unread,
May 27, 2016, 3:49:59 PM5/27/16
to openroa...@googlegroups.com, adr...@octavo2.demon.co.uk
Thank I'll try that , I'm on a mobile at the moment
--
Sent from my Android phone with mail.com Mail. Please excuse my brevity.

Bodo Bergmann

unread,
May 30, 2016, 5:43:35 AM5/30/16
to openroa...@googlegroups.com

Here is what I’m using:

 

II_W4GL_SYSTEMEDITOR=TRUE

II_WINDOWEDIT=C:\mybin\or4gledit.bat %f %l %t

II_WINDOWVIEW=C:\mybin\or4gledit.bat %f %l %t

 

The batch file or4gledit.bat has the following content:

 

@echo off

REM echo %1 %2 %3 %4 %5 %6 %7 %8 %9

REM pause

color F1

if "%II_TEMPORARY%"=="" FOR /F "usebackq delims==" %%i IN (`ingprenv II_TEMPORARY`) DO set II_TEMPORARY=%%i

set ORCOMPFILE="%II_TEMPORARY%\%5.Script"

copy /Y %1 %ORCOMPFILE%

cls

echo Do not close this window !!!

echo OpenROAD will close this window when editing has finished.

echo Editing %ORCOMPFILE%

set NPPFLAG=-multiInst -notabbar -nosession

if "%6"=="[View" SET NPPFLAG=-ro

c:\Progra~2\Notepad++\notepad++.exe %ORCOMPFILE% %NPPFLAG% -n%2

if not "%NPPFLAG%"=="-ro"  copy /Y %ORCOMPFILE% %1

 

The script requires II_TEMPORARY to be set (either in the environment or using ingsetenv).

As you see, it copies the original temporary file to another name: componentname.Script, then opening the copy in Notepad++.

When closing Notepad++ the edited file is copied back to the original name (if not in “Read Only” mode).

You can change the script to meet your own expectations, e.g. if you want another extension.

 

For the two xml files (Adrian had sent in a previous mail):

These are the UDL (User Defined Language) file  (OpenROAD_UDL.xml) and the auto-completion file (OpenROAD.xml) for OpenROAD.

The auto-completion file has to be copied into the “C:\Program Files (x86)\Notepad++\plugins\APIs” directory.

The UDL file has to be imported into the User Defined Language dialog in Notepad++.

 

HTH.

 

Regards,

Bodo.

 

Bodo Bergmann

Principal Software Engineer

Actian | Engineering

Phone: +49.6103.3033.734

www.actian.com

GESELLSCHAFTSANGABEN: Geschäftsführer: Steven R. Springsteel, Stephen Mark Padgett, Markus Bockle

Sitz der Gesellschaft: Hamburg| Handelsregister: Amtsgericht Hamburg | HRB 135991| USt-IdNr: DE252449897

 

From: openroa...@googlegroups.com [mailto:openroa...@googlegroups.com] On Behalf Of Allan Biggs
Sent: Freitag, 27. Mai 2016 21:50
To: openroa...@googlegroups.com
Cc: adr...@octavo2.demon.co.uk
Subject: Re: RE: RE: [openroad-users] OpenRoad style for Notepad++

 

Thank I'll try that , I'm on a mobile at the moment
--
Sent from my Android phone with mail.com Mail. Please excuse my brevity.

On 27/05/2016, 17:42 adr...@octavo2.demon.co.uk wrote:

Is this what you mean:

 

II_W4GL_SYSTEMEDITOR=TRUE

 

And

 

II_WINDOWEDIT="C:\Program Files\TextPad 4\Textpad.exe" -t"%t" "%f(%l)"

 

N++ has no command line flag for %t (component title) %f = filename i.e. wa12345.e01 etc

 

So for N++ something like

 

II_WINDOWEDIT=" "c:\Program Files (x86)\Notepad++\notepad++.exe""  "%f"

 

Sorry I’m not at a workstation with N++ on it.

 

Cheers

 

Adrian

 

 

 

 

 

From: openroa...@googlegroups.com [mailto:openroa...@googlegroups.com] On Behalf Of Allan Biggs
Sent: 27 May 2016 17:22
To: openroa...@googlegroups.com
Subject: Re: RE: [openroad-users] OpenRoad style for Notepad++

 

Thanks ... isn't there an environment variable that opens your own editor ?

adr...@octavo2.demon.co.uk

unread,
May 30, 2016, 6:28:01 AM5/30/16
to openroa...@googlegroups.com

Hi,

 

We had done a similar thing with our development workstations, however we used Windows Symbolic linking instead of file copy (mklink)

 

We all leave the editors open and save then compile – well at least until OpenROAD stops noticing that we’ve been saving in session.

 

So in effect we can open the script in the editor, make changes and save the file without shutting down the editor. (I find this very handy after making a lot of changes in a script and using the compiler to find all my spelling/syntax mistakes)

 

The trouble with the symbolic linking is that you need to modify group policy and add SeCreateSymbolicLinkPrivilege.

 

In group policy editor (Start – Run - gpedit.msc)

 

 

 

The script itself is more complex as I changed the suffix to ‘.script’ to get N++ to recognise the file.

 

I got this working then ran away as some of the DOS text manipulation made my head hurt.

 

All improvements welcome.

 

Adrian

 

 

@echo off

 

echo %1 %2 %3 %4 %5 %6 %7 %8 %9

 

REM Componentname Filenane

REM c:\ingresii\ingres\temp\wa12345.e67

REM w4gledit %t %f

set INGFILE=%4

set INGPATH=%~dp4

set EXT=%~x4

 

 

REM DEBUG

echo INGFILE= %INGFILE%

echo INGPATH= %INGPATH%

echo EXT= %EXT%

 

REM "Script Editor: process_marking_team"

set COMPNAME=%~3

set COMPNAME=%COMPNAME: =%

set COMPNAME=%COMPNAME:ScriptEditor:=%

 

set W4GLNAME=%INGPATH%%COMPNAME%.script

 

REM DEBUG

echo COMPNAME= %COMPNAME%

echo W4GLNAME= %W4GLNAME%

 

echo INGFILE = %INGFILE%

echo W4GLNAME = %W4GLNAME%

echo Do not Close this Window it controls your editor........

 

REM Symbolically link your file so that you don't have to close the editor

 

mklink %W4GLNAME% %INGFILE%

 

REM If there is an error it maybe because the symbolic link name exists - so remove it

if %ERRORLEVEL% == 1 goto :tidyup

 

start /WAIT c:\progra~2\Notepad++\notepad++.exe -multiInst %W4GLNAME%

REM start /WAIT c:\progra~2\Notepad++\notepad++.exe -multiInst %INGFILE%

 

REM Make back up

copy %W4GLNAME% %W4GLNAME%%EXT%

REM Remove the symbolic link - mklink doen't like it if the file already exists.

:tidyup

del %W4GLNAME%

image001.png

adr...@octavo2.demon.co.uk

unread,
May 30, 2016, 6:29:43 AM5/30/16
to openroa...@googlegroups.com
image001.png

Simon Lovell

unread,
Oct 12, 2016, 3:02:20 AM10/12/16
to OpenROAD Users Mailing List
Hi,
I also would like Syntax Highlighting files for Notepad++. I'm back doing OpenROAD, how about that!

I've tried importing those files into Notepad++ via Setting -> Import -> Import style theme(s) 
but they don't appear to have done anything. Is there some different import I need to do? Some other activation? What am I missing here?

Chris Clark

unread,
Oct 12, 2016, 4:40:41 AM10/12/16
to OpenROAD Users Mailing List

This is a little left field of your question; we've a new script editor built into the latest Windows OpenROAD 6.2 patch. Its not enabled by default as we're still testing and gathering feedback. You can enable via:

    ingsetenv II_SCINT_EDITOR TRUE

(or setting in an OS variable). Once testing/feedback is complete we'll be looking to enable by default. We had a session at the user event in London yesterday where we talked about this. If you have feedback, let us know through the support channels.

Bodo Bergmann

unread,
Oct 12, 2016, 10:21:32 AM10/12/16
to openroa...@googlegroups.com

Simon,

 

You used the wrong "import" command.

 

Use the "Import…" button in the dialog that comes up when you use the LanguageàDefine your language… menu item.

There you reference the UDL (User defined language) file OpenROAD_UDL.xml

The other file (OpenROAD.xml) is used for auto-completion and has to be placed in the “C:\Program Files (x86)\Notepad++\plugins\APIs” directory.,

Auto-Completion should also be enabled (SettingsàPreferences).

 

Bodo Bergmann

Principal Software Engineer

Actian | Engineering

www.actian.com

GESELLSCHAFTSANGABEN: Actian Germany GmbH | Geschäftsführer: Steven R. Springsteel, Stephen Mark Padgett, Markus Bockle

Sitz der Gesellschaft: Hamburg| Handelsregister: Amtsgericht Hamburg | HRB 135991| USt-IdNr: DE252449897

 

--

You received this message because you are subscribed to the Google Groups "OpenROAD Users Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openroad-user...@googlegroups.com.
To post to this group, send email to openroa...@googlegroups.com.
Visit this group at https://groups.google.com/group/openroad-users.

Simon Lovell

unread,
Oct 13, 2016, 4:40:05 AM10/13/16
to OpenROAD Users Mailing List
Hi Chris,
This doesn't work at all for me.
Windows 7 64 bit
Ingres 10.2.0 (unpatched)
OpenROAD 6.2.0 Build 15049, Patch 14881

Perhaps that's the problem? Why is the patch before the build?

It's clearly picking up the option because it breaks the built in editor - only usable option is to call the system editor.

HTH

Simon Lovell

unread,
Oct 13, 2016, 4:42:04 AM10/13/16
to OpenROAD Users Mailing List
Thanks Bodo, that helps but it still doesn't enable syntax highlighting. Is that supposed to work with these changes?

Rgds


On Wednesday, October 12, 2016 at 10:21:32 PM UTC+8, Bodo wrote:

Simon,

 

You used the wrong "import" command.

 

Use the "Import…" button in the dialog that comes up when you use the LanguageàDefine your language… menu item.

There you reference the UDL (User defined language) file OpenROAD_UDL.xml

The other file (OpenROAD.xml) is used for auto-completion and has to be placed in the “C:\Program Files (x86)\Notepad++\plugins\APIs” directory.,

Auto-Completion should also be enabled (SettingsàPreferences).

 

Bodo Bergmann

Principal Software Engineer

Actian | Engineering

www.actian.com

GESELLSCHAFTSANGABEN: Actian Germany GmbH | Geschäftsführer: Steven R. Springsteel, Stephen Mark Padgett, Markus Bockle

Sitz der Gesellschaft: Hamburg| Handelsregister: Amtsgericht Hamburg | HRB 135991| USt-IdNr: DE252449897

 

From: openroa...@googlegroups.com [mailto:openroa...@googlegroups.com] On Behalf Of Simon Lovell
Sent: Mittwoch, 12. Oktober 2016 08:43
To: OpenROAD Users Mailing List <openroa...@googlegroups.com>
Subject: [openroad-users] Re: OpenRoad style for Notepad++

 

Hi,

I also would like Syntax Highlighting files for Notepad++. I'm back doing OpenROAD, how about that!

 

I've tried importing those files into Notepad++ via Setting -> Import -> Import style theme(s) 

but they don't appear to have done anything. Is there some different import I need to do? Some other activation? What am I missing here?

--
You received this message because you are subscribed to the Google Groups "OpenROAD Users Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openroad-user...@googlegroups.com.

To post to this group, send email to openro...@googlegroups.com.

Bodo Bergmann

unread,
Oct 13, 2016, 4:56:38 AM10/13/16
to openroa...@googlegroups.com

Hi Simon,

 

Chris wrote that it will require the latest OpenROAD patch.

This is patch number 15087 available here: http://esd.actian.com/product/OpenROAD/6.2/Windows_32-Bit/OpenROAD_6.2.0_Patches

So, you did NOT install the latest patch (14881 is quite old).

 

BTW:

Patch and Build numbers are mentioned - they follow a different numbering scheme.

Build numbers are our internal  OpenROAD build numbers (they are platform and version specific), patch numbers are unique for all OpenROAD/Ingres products.

 

Bodo.

 

Bodo Bergmann

Principal Software Engineer

Actian | Engineering

www.actian.com

GESELLSCHAFTSANGABEN: Actian Germany GmbH | Geschäftsführer: Steven R. Springsteel, Stephen Mark Padgett, Markus Bockle

Sitz der Gesellschaft: Hamburg| Handelsregister: Amtsgericht Hamburg | HRB 135991| USt-IdNr: DE252449897

 

From: openroa...@googlegroups.com [mailto:openroa...@googlegroups.com] On Behalf Of Simon Lovell
Sent: Donnerstag, 13. Oktober 2016 10:40
To: OpenROAD Users Mailing List <openroa...@googlegroups.com>
Subject: [openroad-users] Re: OpenRoad style for Notepad++

 

Hi Chris,

--

You received this message because you are subscribed to the Google Groups "OpenROAD Users Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openroad-user...@googlegroups.com.

To post to this group, send email to openroa...@googlegroups.com.

Bodo Bergmann

unread,
Oct 13, 2016, 5:04:20 AM10/13/16
to openroa...@googlegroups.com

The OpenROAD_UDL.xml specifies syntax highlighting for files with the extension "Script"  (see the "ext" attribute of the <userLang> tag).

Therefore my II_WINDOWEDIT environment variable is using a batch script, that copies the temporary file written by OpenROAD to a componentname.Script file.

See the previous conversation in this thread.

 

What is your II_WINDOWEDIT set to?

 

Bodo.

To post to this group, send email to openroa...@googlegroups.com.

Simon Lovell

unread,
Oct 13, 2016, 5:10:57 AM10/13/16
to OpenROAD Users Mailing List
Thanks Bodo, I didn't know which one was the latest. I doubt I'll be able to convince them to upgrade either and you can only have one OpenROAD 6.2 environment per PC (why is that?). So I guess I can't contribute to this effort.

To post to this group, send email to openro...@googlegroups.com.

Simon Lovell

unread,
Oct 13, 2016, 5:36:47 AM10/13/16
to OpenROAD Users Mailing List
Looks like the problem was an old version of Notepad++.

II_WINDOWEDIT=c:\Port_apps\editScript.bat %f %t  %l

Batch file calls Notepad++ but uses a hard link and backs up on reopen - leaves behind files indefinitely otherwise. FWIW. Love the idea that OpenROAD can always see the file, but it seems that it stuffs up if the batch file exits and you change the source later. Perhaps you get some alert if you use a symbolic rather than hard link and that's the reason that approach is superior.

Paul White

unread,
Oct 13, 2016, 6:31:55 AM10/13/16
to openroa...@googlegroups.com

Ø  and you can only have one OpenROAD 6.2 environment per PC

 

You can have many OpenROAD environments on a PC.

Install the Ingres client only installation first – set the Instance ID then install OpenROAD on top.

 

Paul

To post to this group, send email to openroa...@googlegroups.com.

Allan Biggs

unread,
Oct 13, 2016, 11:05:20 AM10/13/16
to openroa...@googlegroups.com
for the first time in 10 years plus  of OpenROAD I need to debug an img file  - I don't see an option for the  w4glrun command to run in debug mode. Is there a separate command to do this, is it possible to do it?
I am using OR 6.2

thanks
Allan


I hate PDF user manuals !!!!!
[you can browse printed manuals much easier if you don't know the questions to ask !!!! ]

Bodo Bergmann

unread,
Oct 13, 2016, 11:16:51 AM10/13/16
to openroa...@googlegroups.com

You cannot debug using "w4glrun".

The only  debugging for OpenROAD image files is using the "MonImage" utility (see the OpenROAD Programming Guide),
which you can start using the command "w4gldev runimage iidebug.img".

The debugging options are limited though, as the scripts are stripped from image file components - therefore there is no "Debugging" window - means you cannot "step" through the actual script.

You can use the "Log", "Monitor" and "DB Session" windows there.

 

Bodo.

 

Bodo Bergmann

Principal Software Engineer

Actian | Engineering

www.actian.com

GESELLSCHAFTSANGABEN: Actian Germany GmbH | Geschäftsführer: Steven R. Springsteel, Stephen Mark Padgett, Markus Bockle

Sitz der Gesellschaft: Hamburg| Handelsregister: Amtsgericht Hamburg | HRB 135991| USt-IdNr: DE252449897

 

--

You received this message because you are subscribed to the Google Groups "OpenROAD Users Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openroad-user...@googlegroups.com.
To post to this group, send email to openroa...@googlegroups.com.
Visit this group at https://groups.google.com/group/openroad-users.

Allan Biggs

unread,
Oct 13, 2016, 11:26:33 AM10/13/16
to openroa...@googlegroups.com
thanks Bodo

.
To view this discussion on the web visit
https://groups.google.com/d/msgid/openroad-users/BLUPR06MB25759C64BDA2E354C62185193DC0%40BLUPR06MB257.namprd06.prod.outlook.com.
For more options, visit
https://groups.google.com/d/optout.


This communication is for use by the intended recipient and contains
information that may be Privileged, confidential or copyrighted under
applicable law. If you are not the intended recipient, you are hereby
formally notified that any use, copying or distribution of this e-mail,
in whole or in part, is strictly prohibited. Please notify the sender by
return e-mail and delete this e-mail from your system. Unless explicitly
and conspicuously designated as "E-Contract Intended", this e-mail does
not constitute a contract offer, a contract amendment, or an acceptance
of a contract offer. This e-mail does not constitute a consent to the
use of sender's contact information for direct marketing purposes or for
transfers of data to third parties.

Simon Lovell

unread,
Oct 13, 2016, 10:25:37 PM10/13/16
to OpenROAD Users Mailing List, paul....@shift7solutions.com.au
I've tried that. The first version is uninstalled (with most of the ingres client's files).

It's actually in the release notes for 6.2 that you can only have one 6.2 client per Windows. It's a bit of a pain where I am, mostly because I want to avoid the IIPROMPT crap in the standard netutil entries for this site. They appear to be overwritten if I update them. I wish Ingres had dropped support for that 10 years ago like they were going to IIRC. It would reflect better on OpenROAD and Ingres to force users off that, albeit with some short term pain.

Paul White

unread,
Oct 14, 2016, 1:10:00 AM10/14/16
to openroa...@googlegroups.com

I have OR4x, OR5x and OR6x in separate environments working fine.

 

You are correct, the installer will let me wedge in a second OR62 installation.  That’s a bit of a problem hmmmm.

 

It’s time to start playing.  Have you seen these pages?

 

http://community.actian.com/wiki/LoadnRun_Home

https://github.com/ActianCorp/or62demos

Simon Lovell

unread,
Oct 14, 2016, 3:02:16 AM10/14/16
to OpenROAD Users Mailing List
Yeah, you can have 4.1 and 6.2 along side each other but not two 6.2 environments. 

Simon Lovell

unread,
Dec 12, 2016, 3:41:54 AM12/12/16
to OpenROAD Users Mailing List
Is everyone happy with Notepad++? I miss the function for auto complete from editplus, which saved you having to type in "Then" "DO" "ENDIF;" "ENDWHILE;" "ENDFOR;" keywords and could also add the additional level of indent on the following line.

Is this functionality present in Notepad++ and I just haven't found it?

Allan Biggs

unread,
Dec 12, 2016, 4:35:06 AM12/12/16
to openroa...@googlegroups.com, simon...@gmail.com
http://docs.notepad-plus-plus.org/index.php/Auto_Completion

I didn't read it though



From:        Simon Lovell <simon...@gmail.com>
To:        OpenROAD Users Mailing List <openroa...@googlegroups.com>
Date:        12/12/2016 08:42
Subject:        [openroad-users] Re: OpenRoad style for Notepad++
Sent by:        openroa...@googlegroups.com




--
You received this message because you are subscribed to the Google Groups "OpenROAD Users Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openroad-user...@googlegroups.com.
To post to this group, send email to openroa...@googlegroups.com.
Visit this group at
https://groups.google.com/group/openroad-users.
To view this discussion on the web visit
https://groups.google.com/d/msgid/openroad-users/a6ce72d9-5d4a-4f1a-bc5f-e4d313ecdc34%40googlegroups.com.
For more options, visit
https://groups.google.com/d/optout.

Simon Lovell

unread,
Dec 13, 2016, 9:27:55 PM12/13/16
to OpenROAD Users Mailing List
Allan, that provides some functionality for completing individual words and hits for parameters but nothing for adding addition words. I've used another editor which allowed adding the "then" and "endif;" whenever you typed "if". I can't see how to do that in Notepad++.

Allan Biggs

unread,
Dec 14, 2016, 12:59:21 AM12/14/16
to openroa...@googlegroups.com
 
Agreed read it later maybe someone will take on the task.
 
.... I miss the LSE on VMS ..... TPU was fantastic
Sent: Wednesday, December 14, 2016 at 2:27 AM

From: "Simon Lovell" <simon...@gmail.com>
To: "OpenROAD Users Mailing List" <openroa...@googlegroups.com>
Subject: Re: [openroad-users] Re: OpenRoad style for Notepad++
Allan, that provides some functionality for completing individual words and hits for parameters but nothing for adding addition words. I've used another editor which allowed adding the "then" and "endif;" whenever you typed "if". I can't see how to do that in Notepad++.

--
You received this message because you are subscribed to the Google Groups "OpenROAD Users Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openroad-user...@googlegroups.com.
To post to this group, send email to openroa...@googlegroups.com.
Visit this group at https://groups.google.com/group/openroad-users.

Simon Lovell

unread,
Dec 19, 2016, 11:05:17 PM12/19/16
to OpenROAD Users Mailing List
In case anyone is interested, I have found Notepad++ plugin FingerText which does what I was asking for.
Reply all
Reply to author
Forward
0 new messages