About site: Open Source/Software/Editors - Nedit Macros
Return to Computers also Computers
  About site: http://www.mailnet.co.uk/~marc/msl.html

Title: Open Source/Software/Editors - Nedit Macros A large collection of macros for use with the NEdit text editor.
EverPlanet Offers Microsoft NT based hosting solutions with ASP, ColdFusion, Access, FoxPro, and SQL 7.0 support.

Professional_Software_Associates Developers of printer driver and print manager for VxWorks. Also provide graphics, custom bitmap fonts, and vectored font solutions for embedded systems.

Sun_Blueprints_Online Best practices for enterprise environments using Sun solutions.

Delphi_Super_Page Categorized component database, targetting almost all Borland RAD tools.

WebMenu_Maker Helps on creating DHTML pop-up menu. By Excellence Software, Inc. [Windows, Commercial]

ABC_Internet Offers site design and hosting. Located in Cameron Park, California.


  Alexa statistic for http://www.mailnet.co.uk/~marc/msl.html





Get your Google PageRank






Please visit: http://www.mailnet.co.uk/~marc/msl.html


  Related sites for http://www.mailnet.co.uk/~marc/msl.html
    CorporaTech,_Inc Offers Enterprise Resource Planning system consulting and programming for a variety of ERP packages, including Epicor Software systems running on the IBM U2 databases. Located in San Diego, Californi
    Designed_to_a_T Download images free for personal and business use.
    Laptop_Shop Suppliers of a broad range of new a used laptops. UK based.
    Oringe An interactive web design shop dedicated to producing custom and unique web sites, e-commerce and targeted internet marketing campaigns.
    Ports_Used_by_Trojans A table showing examples of existing trojans and ports in current use.
    Trifecta_Technologies Offers Internet-based business applications development using IBM WebSphere.
    PhotoImpact_Newbies_-_Yahoo!_Groups A group to share ideas, ask questions, and show results of weekly tutorials for stationery creating in Photo Impact.
    RFC_2274 User-Based Security Model (USM) for Version 3 of the Simple Network Management Protocol (SNMPv3). U. Blumenthal, B. Wijnen. January 1998.
    Business_Resources_Online Background, and information about help desk software.
    Men_and_Mice Offers a diagnostic utility for DNS administrators, and QuickDNS Pro, a DNS server for the Mac.
    ASPMatrix_com Resource site dealing with ASP, ASP.NET, .NET, Vignette and Oracle.
    BinaryNotes An ASN.1 framework for Java and .NET based on annotations/attributes. The framework has the flexible ASN.1 compiler, the runtime library that supports BER, DER and PER, and the Message Queues. [Open S
    RFC_0614 Response to RFC 607: "Comments on the File Transfer Protocol". K.T. Pogran, N. Neigus. January 1974.
    RFC_0291 Data Management Meeting Announcement. D.B. McKay. January 1972.
    United_Infosys_Inc_ CD and DVD authoring, Web and graphic design. Based in Allentown, Pennsylvania, United States.
    Webmetrics Offers monitoring and testing services. Includes company overview and information on support services.
    Computerworld__AOL_sees_sharp_drop_in_spam Spam reports from America Online members dropped from a daily average of almost 11 million in November 2003 to a daily average of about 2.2 million last month, the company said this week. (Dece
    FrontPage_2000_Review This review has links to lots of other resources. By Tom Connell.
    Appleseed_Communications Provides website development, graphic design (logos, newsletters, brochures, flyers), writing and editing, public relations, Macintosh computer consulting, and networking services.
    DCForum A Web discussion software written in Perl. [Commercial]
This is websites2007.org cache of m/ as retrieved on 2008.09.08 websites2007.org's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
nedit macro list

nedit macro list

Here's a selection of macros for the nedit text editor. You can send any additons or modifications to me. If you need help on adding macros to nedit click here.The macros are divided into 4 sections, editing, programming, word processing and other. There's also a list of changes.

_ editing

complete word fill selection with character smart home get previous swap characters select word/line/file COMET marker insert date QEDIT cut/copy project macros previous position add string to line start place selected text at top of window Borland IDE tab/shift+tab append to clipboard exchange clipboard with selection join lines delete current line modified upper/lower case multiple clipboards Next and Prev NEdit window center cursor position save selection as save current position togglecase swap two words tab expand and `showtabspace' shift line up/down remove newlines and rewrap selection capitalize remove string from line start

_ programming

make C prototypes nmake goto matching add/remove # comment find definition find definition dialog add/remove Ada comment auto-uppercase move to next/prev function trace IF/ELSE/END IF Fortran shift left/right fold C/C++ align C++ comment add space inside brackets open include files list<> language specific comments select block handle tag files with multiple definitions goto header/source file

_ word processing

ispell LaTeX enviroment BibTeX entries run LaTeX LaTeX fill paragraph toggle formatting codes plain text justification change LaTeX environment

_ other

add pre tags and convert add italic tags remove trailing spaces convert from/to unix/dos send mail expand then print hide .bck files dired run grep run sort RCS shell commands get enviroment varible DNS database macros element functions find line >80 chars run cut run colrm run par load macro files on demand multiple choice dialogs tab column search insert closing HTML tag convert to/from ascii/char pgp5 shell commands view manfile make HTML tags preserve cursor position after running expand show result of shell command in a new window ClearCase tools count occurances of string open/save files on remote host convert text to HTML table convert text to HTML list perl script to identify the language of a file

_ changes

Jun 07 1999new add string to line start macro, this one makes it also possible to insert strings that containcharacters that are used by the regular expressions remove string from line start addedJun 03 1999 remove newlines and rewrap selection added change LaTeX enviroment added delete current line modified, you can now delete the lastline of the file capitalize addedJun 01 1999 plain text justification addedMar 31 1999 run latex improved, there's now no problem with using undo, and you can use `rational latex' commands shift line up/down added perl script to identify the language of a file added convert text to HTML table added convert text to HTML list added tab expand and `showtabspace' added BibTeX entries modified toggle formatting codes addedFeb 20 1999 swap two words added open/save files on remote host added pgp5 shell commands shell script improved, the last version would choke on large files because of theway shell redirection was used. Fixed. The script is also moreflexable and there's support for adding keys. goto header/source file added count occurances of string added ClearCase tools added insert closing HTML tag improved show result of shell command in a new window added can now see contents of a single buffer with multiple clipboards macro get previous can also get next togglecase added preserve cursor position after running expand added make HTML tags added a \ was missing from the LaTeX enviroment macro view manfile added LaTeX fill paragraph added save current position added insert date now Y2K compliant :)Previous changes are listed here.

_ complete word

Completes a partly typed word by searching the text. Available in two versions,the version distributed with Nedit v5, which searches forwards and backwards tofind a match, and a modifed version which just searches backwards, but givesalternatives with repeated use.standard version# Tuning parametersScanDistance = 200# Search back to a word boundary to find the word to completestartScan = max(0, $cursor - ScanDistance)endScan = min($text_length, $cursor + ScanDistance)scanString = get_range(startScan, endScan)keyEnd = $cursor-startScankeyStart = search_string(scanString, "
 

A

large

collection

of

macros

for

use

with

the

NEdit

text

editor.

http://www.mailnet.co.uk/~marc/msl.html

Nedit Macros 2008 September

dvd rental

dvd


A large collection of macros for use with the NEdit text editor.

Rules




© 2008 Internet Explorer 5+ or Netscape 6+

Recommended Sites: 1. Arts - Business - Computers - Games - Health - Home - Kids and Teens - News - Recreation - Reference - Regional - Science - Shopping - Society - Sports - World Miss Gallery - Top Anime Hentai - DVD rental by mail - Pay Day Loans - Bad Credit Mortgages - Mobile Phones - Online Advertising - Mortgages
2008-09-08 14:14:07

Copyright 2005, 2006 by Webmaster
Websites is cool :) 117Druk Wielkoformatowy - Caravans - Zbieram Na Samochód - Hotel Granada - Baby Gifts