summaryrefslogtreecommitdiff
path: root/editors
AgeCommit message (Collapse)AuthorFilesLines
2008-01-05Update xvile from 9.5r to 9.6.agc2-14/+6
Changes from the previous version: Changes for vile 9.6 (released Thu Dec 27 2007) > Tom Dickey: + update makefile.blc, adding charsets.c, eightbit.c and wcwidth.c + build-fix for OS/2 IBM CSet (define a delay function for catnap). + minor build-fixes for VMS: + modify vmsbuild.com to simplify workaround for broken MMS 3.8 + provide dummy variables for xvile to reflect modularization changes with respect to vmsvt.c + documentation updates. + minor fix to manfilt.c to pass-through UTF-8 codes by testing with both iswprint() and isprint(). 20071224 (u) > Tom Dickey: + separate vile's ttputc from termcap prototype to pass integer param rather than just a char on Solaris. + fix computation of columns needed to show UTF-8 codes in POSIX locale. + modify manfilt.c to provide UTF-8 output in a UTF-8 locale. + minor fix to CF_FUNC_ICONV to link iconv on cygwin (noting that cygwin has no useful locale support, it may someday). 20071202 (t) > Tom Dickey: + modify filters makefile "clean" rule to accommodate OSF/1 4.0D whose make program leaves intermediate ".c" files for each lexer. + change order of restore-flags and switch-buffer in restore_buffer_state, avoiding an unnecessary prompt to discard changes when attempting to read a buffer that cannot be read. + increase a few table sizes to work with AIX 5.1 lex. + modify check for lex version to avoid hanging on older platforms where it would try to read from standard input even if it does not recognize the option. 20071125 (s) > Tom Dickey: + several changes to provide usable Unicode support: + add mode percent-utf8 to set a threshold for file-encoding mode "auto" detection of UTF-16/UTF-32 files. + file-encoding mode can be set to "auto", to detect UTF-16 files, which are loaded as UTF-8. + UTF-8 files are detected based on the file-encoding mode as well. + Unicode values are displayed (where no locale controls) as "\uXXXX" in 4 hexadecimal digits. + add unicode-as-hex mode to override locale, forcing Unicode values to display as "\uXXXX". + for buffers with UTF-8 encoding, show illegal bytes as "\?XX". + Unicode values can be inserted into buffers using ^VuXXXX form. Limitations: + terminal drivers support Unicode display in varying degrees: + winvile - multicolumn characters, depends on font selection + termcap/terminfo - relies on terminal emulator, knows about multicolumn characters + xvile - displays only single-column characters + curses - depends on the curses library, e.g., ncursesw + win32 console - not yet implemented + combining characters are not combined. + registers hold byte data, will show the UTF-8 encoding for data rather than a \uXXXX (unless the file-encoding for [Registers] is changed). + some "characters" such as the report for yanked text is still really a byte-count. + inserting a \uXXXX into the minibuffer will display the UTF-8 encoding. + regular expressions are not wide-character aware. + UTF-16 and UTF-32 files are detected based on BOM and/or the contents of the first line of the file. + external syntax filters do not handle BOM or UTF-16, UTF-32. + improve name-completion by saving/restoring the original window and buffer when [Completions] closes, rather than the closest window. + add output from rcshist to diffmode. + add ".vbp" files to inimode. + modify configure script to omit lex-filt.l from build if lex is not really flex, since the tables are too large for the older program. + modify spell.pm to use a temporary file to work with newer Perl's that do not handle tied variables exactly as filehandles. + update Kevin Buettner's email address. + add -class option to xvile. + remove a redundant XtDestroyWidget() from x_close() to quiet a warning from XtRemoveGrab() when doing a ":q" from Xm-vile (report by Chris Green). + use va_copy() in dofmt() to work with Linux on powerpc (report by Paul van Tilburg). + add docbookmode + improve 9.5m/9.5q check for file ownership, adding a warning message for files which are ignored (report by Chris Green). + change default for --with-locale configure option to mesh with --disable-extensions. + improve paste-performance in winvile by passing whole-line chunks to the insert-function. + improved cppmode's identifier-expr (report by Gerry Fredette). + correct order of evaluation from 9.4w when setting record-separator, which was setting "crlf" ending temporarily when computing the buffer size, even when "lf" was intended. That would cause an immediate write from winvile (without change) for a buffer to write too many characters. + add syntax filter conffilt.l, for "ordinary" config-files. + add "rectangle-insert-mode". + fill in several omitted items in init_mode_value(). + add "describe-&functions" and "describe-$variables" commands. (The latter is a stub for later). + improve repainting in winvile while processing external command. also modify keyboard handling to provide type-ahead while processing external command. + remove obsolete $tpause variable. + modify majormode inferencing to check preamble for [Standard Input] and [Output] buffers. + add "&gtmotion" function for scripts. + improve handling of enumerated values by forcing all to lowercase, e.g., to eliminate the need for the special case in 9.1x to handle "TRUE" and "true". + revise lstrinsert() and associated logic which implements changes to rectangles, e.g., with c^Aq, to ensure that it pads the change with blanks rather than nulls (report by Paul van Tilburg). + improve modeline support by ignoring strict "vi" modeline options that are not recognized by vile, rather than reporting an error. + use new module blist (binary search of lists) to reduce linear searches in the places where btree is not already used. + change rename-other-buffer command to other-buffer-rename, to avoid name-completion conflict with rename-command (feedback from Steve Lembark). + remove obsolete check for ANSI qsort. + improve vilefilt.l, highlighting mode names and displaying error for unknown mode, function and state variables. + fix typo in manpage.rc which broke use of pod2man in 9.5m + add &pquote in manpage.rc, to allow it to format html output when vile-manfilt, etc., reside in directories containing spaces in their name. + add ".reg" filetypes to inimode. + add several package-related suffixes to sqlmode. + add xpmmode
2008-01-05Update vile from 9.5r to 9.6.agc3-72/+9
Changes from the previous version: Changes for vile 9.6 (released Thu Dec 27 2007) > Tom Dickey: + update makefile.blc, adding charsets.c, eightbit.c and wcwidth.c + build-fix for OS/2 IBM CSet (define a delay function for catnap). + minor build-fixes for VMS: + modify vmsbuild.com to simplify workaround for broken MMS 3.8 + provide dummy variables for xvile to reflect modularization changes with respect to vmsvt.c + documentation updates. + minor fix to manfilt.c to pass-through UTF-8 codes by testing with both iswprint() and isprint(). 20071224 (u) > Tom Dickey: + separate vile's ttputc from termcap prototype to pass integer param rather than just a char on Solaris. + fix computation of columns needed to show UTF-8 codes in POSIX locale. + modify manfilt.c to provide UTF-8 output in a UTF-8 locale. + minor fix to CF_FUNC_ICONV to link iconv on cygwin (noting that cygwin has no useful locale support, it may someday). 20071202 (t) > Tom Dickey: + modify filters makefile "clean" rule to accommodate OSF/1 4.0D whose make program leaves intermediate ".c" files for each lexer. + change order of restore-flags and switch-buffer in restore_buffer_state, avoiding an unnecessary prompt to discard changes when attempting to read a buffer that cannot be read. + increase a few table sizes to work with AIX 5.1 lex. + modify check for lex version to avoid hanging on older platforms where it would try to read from standard input even if it does not recognize the option. 20071125 (s) > Tom Dickey: + several changes to provide usable Unicode support: + add mode percent-utf8 to set a threshold for file-encoding mode "auto" detection of UTF-16/UTF-32 files. + file-encoding mode can be set to "auto", to detect UTF-16 files, which are loaded as UTF-8. + UTF-8 files are detected based on the file-encoding mode as well. + Unicode values are displayed (where no locale controls) as "\uXXXX" in 4 hexadecimal digits. + add unicode-as-hex mode to override locale, forcing Unicode values to display as "\uXXXX". + for buffers with UTF-8 encoding, show illegal bytes as "\?XX". + Unicode values can be inserted into buffers using ^VuXXXX form. Limitations: + terminal drivers support Unicode display in varying degrees: + winvile - multicolumn characters, depends on font selection + termcap/terminfo - relies on terminal emulator, knows about multicolumn characters + xvile - displays only single-column characters + curses - depends on the curses library, e.g., ncursesw + win32 console - not yet implemented + combining characters are not combined. + registers hold byte data, will show the UTF-8 encoding for data rather than a \uXXXX (unless the file-encoding for [Registers] is changed). + some "characters" such as the report for yanked text is still really a byte-count. + inserting a \uXXXX into the minibuffer will display the UTF-8 encoding. + regular expressions are not wide-character aware. + UTF-16 and UTF-32 files are detected based on BOM and/or the contents of the first line of the file. + external syntax filters do not handle BOM or UTF-16, UTF-32. + improve name-completion by saving/restoring the original window and buffer when [Completions] closes, rather than the closest window. + add output from rcshist to diffmode. + add ".vbp" files to inimode. + modify configure script to omit lex-filt.l from build if lex is not really flex, since the tables are too large for the older program. + modify spell.pm to use a temporary file to work with newer Perl's that do not handle tied variables exactly as filehandles. + update Kevin Buettner's email address. + add -class option to xvile. + remove a redundant XtDestroyWidget() from x_close() to quiet a warning from XtRemoveGrab() when doing a ":q" from Xm-vile (report by Chris Green). + use va_copy() in dofmt() to work with Linux on powerpc (report by Paul van Tilburg). + add docbookmode + improve 9.5m/9.5q check for file ownership, adding a warning message for files which are ignored (report by Chris Green). + change default for --with-locale configure option to mesh with --disable-extensions. + improve paste-performance in winvile by passing whole-line chunks to the insert-function. + improved cppmode's identifier-expr (report by Gerry Fredette). + correct order of evaluation from 9.4w when setting record-separator, which was setting "crlf" ending temporarily when computing the buffer size, even when "lf" was intended. That would cause an immediate write from winvile (without change) for a buffer to write too many characters. + add syntax filter conffilt.l, for "ordinary" config-files. + add "rectangle-insert-mode". + fill in several omitted items in init_mode_value(). + add "describe-&functions" and "describe-$variables" commands. (The latter is a stub for later). + improve repainting in winvile while processing external command. also modify keyboard handling to provide type-ahead while processing external command. + remove obsolete $tpause variable. + modify majormode inferencing to check preamble for [Standard Input] and [Output] buffers. + add "&gtmotion" function for scripts. + improve handling of enumerated values by forcing all to lowercase, e.g., to eliminate the need for the special case in 9.1x to handle "TRUE" and "true". + revise lstrinsert() and associated logic which implements changes to rectangles, e.g., with c^Aq, to ensure that it pads the change with blanks rather than nulls (report by Paul van Tilburg). + improve modeline support by ignoring strict "vi" modeline options that are not recognized by vile, rather than reporting an error. + use new module blist (binary search of lists) to reduce linear searches in the places where btree is not already used. + change rename-other-buffer command to other-buffer-rename, to avoid name-completion conflict with rename-command (feedback from Steve Lembark). + remove obsolete check for ANSI qsort. + improve vilefilt.l, highlighting mode names and displaying error for unknown mode, function and state variables. + fix typo in manpage.rc which broke use of pod2man in 9.5m + add &pquote in manpage.rc, to allow it to format html output when vile-manfilt, etc., reside in directories containing spaces in their name. + add ".reg" filetypes to inimode. + add several package-related suffixes to sqlmode. + add xpmmode
2008-01-04Added support for installation to DESTDIR.heinz1-9/+13
2008-01-04-update to 1.0.6.12drochner5-27/+26
changes: -Complete abstraction of the graphical user interface should make porting easier -Improved signal handling for pipe communications -patch to support maxima-5.14
2008-01-04Full DESTDIR support.ghen1-1/+3
2008-01-03Added support for installation to DESTDIR.heinz1-3/+5
2008-01-01Make this package pass the check-interpreters part of the installationagc1-1/+22
process on NetBSD. XXX - more work required on other platforms.
2008-01-01Fix our lisp patch. I've checked building this package with both emacs20cjep2-6/+6
and emacs21. Addresses PR#30131.
2008-01-01Fix build with scrollkeeper-config related changes.joerg2-1/+15
2007-12-30Need to update MASTER_SITES, noticed by Zafer by private mail.obache1-5/+10
Refrect: http://www.nedit.org/download.php (ftp://ftp.kreonet.re.kr/pub/tools/doc-tools/nedit/ does not have v5.5 now)
2007-12-27Fix build on DragonFly.joerg2-7/+7
2007-12-27No lldiv on DragonFly, just compute it directlyjoerg2-3/+12
(most likely doesn't make a difference anyway).
2007-12-23Mark as GPLv3 (commented out).wiz1-1/+3
2007-12-22Update nano to 2.0.7.obache5-42/+8
Patches for NetBSD curses no longer need. 2007/12/20 - GNU nano 2.0.7 keeps its balance. This release fixes several bugs, among others: a segfault and several cursor positioning problems when uncutting text or inserting files into the current buffer; a problem where the total number of characters would be miscalculated when replacing single-byte characters with multibyte ones; several minor issues with the statusbar prompt involving text display and mouse support; and several oddities when tab-completing in the middle of a line. It also improves autodetection of DOS and Mac format files, properly supports the mouse wheel when using a version of ncurses built with the --enable-ext-mouse option, fixes some problems under NetBSD curses, adds a lot of translation updates, and adds more minor documentation updates. Slang curses emulation support has also been changed to turn off all the options that --enable-tiny does, as it's hopelessly broken otherwise. Finally, nano is now licensed under the GNU GPL version 3 or later, and its documentation is now dual-licensed under the GNU GPL version 3 or later and the GNU FDL version 1.2 or later. Have fun.
2007-12-18This package is DESTDIR ready.obache1-1/+3
2007-12-18Updated editors/vim-share to 7.1.175martti4-16/+60
4691 7.1.162 crash when using a modifier before "while" or "for" 2367 7.1.163 warning for the unknown option 'bufsecret' 1576 7.1.164 reading past end of regexp pattern 5538 7.1.165 crash related to getting X window ID 2134 7.1.166 memory leak when using "gp" in Visual mode 2528 7.1.167 xxd crashes when using "xxd -b -c 110" 2989 7.1.168 (extra) Win32 GUI: when no focus click doesn't position cursor 1926 7.1.169 using uninitialized memory when system() fails 1722 7.1.170 overlapping arguments to strcpy() 2324 7.1.171 reading one byte before allocated memory. 1536 7.1.172 if 'buftype' is "acwrite" Vim still does overwrite check 1928 7.1.173 accessing freed memory when using "\%^" pattern 2197 7.1.174 writing NUL past end of a buffer 4722 7.1.175 <BS> doesn't work with some combination of option settings
2007-12-17There is no obvious reason for USE_GNU_ICONV, and I haven't found one bydrochner1-3/+1
code inspection, so remove it.
2007-12-17update to 1.7.4drochner3-18/+18
changes: -translation updates -minor bugfixes
2007-12-16Make this build on Darwin.yyamano2-5/+5
2007-12-16Remove unused patch.wiz1-19/+0
2007-12-10Add one mirror site.obache1-2/+3
2007-12-08Needs msgfmt.rillig1-2/+2
2007-12-07Updated Xfce to 4.4.2martti4-9/+19
Lots of bug fixes. For the official ChangeLog, please see http://www.xfce.org/documentation/changelogs/4.4.2
2007-12-06Whoops, use ${MACHINE_GNU_PLATFORM} rather than i386markd1-2/+2
2007-12-06Use ${GAMEMODE} instead of an explicit mode for update-game-score.markd2-4/+4
Bump PKGREVISION.
2007-12-05Let not to refresh aggressively.obache3-7/+7
2007-12-02Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev.wiz1-3/+4
2007-12-02Remove Ex-MASTER_SITEs. From Zafer Aydogan.wiz1-4/+2
2007-11-30Bump PKGREVISION because openexr now depends on ilmbase.wiz3-6/+6
2007-11-29update to 2.20.4drochner2-7/+7
changes: - Properly detect the current display viewport, so that launching logic works properly on Compiz - Misc bugfixes -translation updates
2007-11-29Abiword builds on Solaris with sunpro. Yay!rillig3-4/+46
2007-11-28Fixes typo in wapper script.obache2-3/+3
Problem noticed by Satoshi Suetake in PR 37445. Bump PKGREVISION.
2007-11-26Updated editors/vim-share to 7.1.161martti3-4/+20
1541 7.1.157 :" in Ex mode at end of file results in an error message 4629 7.1.158 (extra) Win32: with utf-8 and cp1250 Alt-y is the wrong char 1646 7.1.159 overlapping arguments for a strcpy() 1661 7.1.160 getting/losing focus may cause hit-enter prompt to be redrawn 4347 7.1.161 compilation errors with tiny features and EXITFREE
2007-11-25Update to 1.40.18:wiz9-96/+81
beav (1:1.40-18) unstable; urgency=low * Repackaged with the original 1.40 source so that we get a proper diff.gz. * defs.h: + Removed prototypes for malloc and strcpy/strcat (Closes: #262572). -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sat, 31 Jul 2004 22:42:19 +0200 beav (1:1.40-17) unstable; urgency=low * debian/control: + Set policy to 3.6.1.1. * beav.1: + Fixed documentation location (Closes: #210601). * Fixed warnings everywhere in the code. * main.c: + Added a help string to tell the user how to quit (Closes: #171933). * file.c: + Fixed an overflow in the filename display routine (Closes: #56546). * fileio.c: + Corrected wrong char signedness assumption that caused backup filenames to be mangled (Closes: #46376). -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Tue, 13 Jul 2004 11:36:18 +0200 beav (1:1.40-16) unstable; urgency=low * New maintainer (Closes: #227774). * debian/control: + Set policy to 3.6.1.0. + Removed caps in the short description. * debian/copyright: + Added the GPL blurb to the copyright file. -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Tue, 27 Jan 2004 13:22:17 +0100 beav (1:1.40-15) unstable; urgency=low * Include patch from James A Morrison for Hurd support. * Update to standards version 3.5.5. -- Martin Mitchell <martin@debian.org> Sat, 21 Jul 2001 23:37:20 +1000 beav (1:1.40-14) unstable; urgency=low * Update to standards version 3.5.2. (closes: #91113, #91385) * Add build depends. (closes: #70223) -- Martin Mitchell <martin@debian.org> Tue, 27 Mar 2001 00:18:25 +1000 beav (1:1.40-13) unstable; urgency=low * Update to standards version 2.4.1. * Recompile for ncurses4. -- Martin Mitchell <martin@debian.org> Sun, 11 Oct 1998 01:27:50 +1000 beav (1:1.40-12) unstable; urgency=low * Fix missing separator in debian/rules. (#25766) -- Martin Mitchell <martin@debian.org> Sat, 29 Aug 1998 18:27:04 +1000
2007-11-25MASTER_SITE updates from Zafer Aydogan.wiz2-4/+4
2007-11-22+notecasedrochner1-1/+2
2007-11-22import notecase-1.7.2, a Hierarchical note managerdrochner12-0/+269
pkgsrc notes: -modified to use system libz instead of a bundled copy -disabled the option to create self-extracting combinations of the executable with a data file. This relies on reliable deduction of the currrent executable's path which cannot be done in a portable way, and it doesn't make much sense anyway because that thing needs a zillion of shared libraries.
2007-11-21don't try to @dirrm locale dirsdrochner1-2/+1
2007-11-20Use BROKEN_GETTEXT_DETECTION=yes instead of doing the work manually.rillig1-3/+2
Thanks to obache.
2007-11-20Solaris needs -lintl.rillig1-1/+3
2007-11-19Improve wrapper script, closing to usual behavior.obache2-6/+15
* Pass settings to nvi with env NEXINIT instead of EXINIT, to avoid affect of env NEXINIT. * Honor NEXINIT, EXINIT environment variable. * Pass all setting in ~/.{n}exrc by using source command. Fixes PR 13677. Bump PKGREVISION.
2007-11-19Update zile to 2.2.50.hiramatsu3-22/+6
Changes are not provided. Please consult sourceforge's cvs if you are interested in.
2007-11-17Reset maintainer for itojun's packages.wiz1-2/+2
2007-11-14Fixed six little things that prevented sunpro from building the package.rillig7-1/+94
Now it fails in the linker stage with an undefined reference to UT_XML::processingInstruction(const char *, const char *).
2007-11-13Updated editors/vim-share to 7.1.156martti3-5/+33
2557 7.1.148 QNX and some other systems require testing for sys/types.h 4823 7.1.149 completion menu messed up when using the scroll bar 1759 7.1.150 Visual mode "p" doesn't work when 'clipboard' has "unnamed" 2108 7.1.151 lalloc(0) error for line completion with 'ic' and 'inf' set 3183 7.1.152 display problem when 'hls' and 'cursorcolumn' are set 4610 7.1.153 compiler warnings on SGI 1547 7.1.154 (after 7.1.152) compiler warning for signed/unsigned compare 1594 7.1.155 crash when 'undolevels' is 0 and repeating "udd" 4174 7.1.156 overlapping arguments for strcpy() during cmdline completion
2007-11-13long-overdue commit of an option to enable xft anti-aliased fontsdan1-2/+9
ok uebayasi@
2007-11-13make paths relative to ${.CURDIR}dan1-6/+6
per request from uebayasi@
2007-11-12Use ${EMACS_FLAVOR} instead of ${_EMACS_TYPE}.uebayasi1-2/+2
2007-11-12Support XEmacs 21.5.x without X too.uebayasi6-71/+131
2007-11-07Fixed missing <unistd.h> on DragonFly.rillig2-1/+21