Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-11-13 | Better error checking of snprintfs. From Han Boetes. | Kjell Wooding | |
2005-11-13 | Copy buffer before handing it to basename(). | Kjell Wooding | |
Inspired by a patch from Han Boetes. | |||
2005-11-12 | break in case | Theo de Raadt | |
2005-11-12 | remove unused variable; ok kjell | Theo de Raadt | |
2005-11-12 | Paranoia. Check if last of a series of strlcats overflows. Pointed out by | Kjell Wooding | |
Han Boetes. | |||
2005-11-11 | Now that we have an editable minibuffer, revert parsing of | Kjell Wooding | |
"//" and "/~" as '/' and '~' respectively. I know emacs does it, but it is weird, and breaks things that foolishly use filenames like "/tmp//crontab.xxxx". Proddings from matthieu and deraadt. Error report from Bernd Ahlers. | |||
2005-11-11 | spacing | Theo de Raadt | |
2005-11-11 | Enable some of the more common editing keybindings in the minibuffer. | Kjell Wooding | |
i.e. left, right, ^B, ^F, ^Y, ^K, ^A, ^E Also, make completions work as you would expect them to i.e. a *Completions* buffer pops up with your choices in it when you hit a second TAB or SP. It's ugly, but it works. ok deraadt. | |||
2005-11-07 | add missing ctype.h | Kjell Wooding | |
2005-11-07 | KNF | Kjell Wooding | |
2005-11-07 | Move most of the dired hooks into dired.c. While here, enable some | Kjell Wooding | |
dired functions that were written, but not bound to keys. No other functional change. Tested by Han Boetes. | |||
2005-11-07 | Allow ctrl-key patterns ("^X^C") in keybind function. Will | Kjell Wooding | |
allow more modularization of keymaps later. Also, improved error checking suggested by cloder. | |||
2005-10-18 | Don't consider the last line of the compilation buffer as | Kjell Wooding | |
parsable output. It is always a status message. While here, some better error checking. looks ok, cloder@. | |||
2005-10-18 | make fill-paragraph undoable | Kjell Wooding | |
2005-10-18 | When attempting to open a filename, walk backwards through minibuffer: | Kjell Wooding | |
a> if you run into the beginning of the string, use the whole thing b> if you run into a // combo, use everything starting from the second / c> if you run into a /~ combo, use everything starting from the ~ i.e. do like emacs. From (and for) Jason Wright | |||
2005-10-17 | make undo of word-based capitalization functions work | Kjell Wooding | |
ok beck@ | |||
2005-10-17 | Fix string handling. LOGIN_NAME_MAX includes the NUL, so don't reserve extra | Kjell Wooding | |
space. Fix usage of strlcpy. Correct test for terminating slash. "looks good" deraadt@ | |||
2005-10-14 | add missing /* ARGSUSED */ to quiet lint. | Kjell Wooding | |
2005-10-14 | more replstr into the #ifdef | Theo de Raadt | |
2005-10-14 | put proto in same #ifdef as code | Theo de Raadt | |
2005-10-14 | more headers to please lint | Theo de Raadt | |
2005-10-14 | unused variables | Theo de Raadt | |
2005-10-14 | Whoops. C-x C-v (filevisitalt) didn't work on inital scratch buffer. | Kjell Wooding | |
It does now. Noted by deraadt. | |||
2005-10-14 | move the dired routines into dired.c where they belong. | Kjell Wooding | |
ok cloder@ | |||
2005-10-13 | toast unused variable | Theo de Raadt | |
2005-10-13 | use strtonum() correctly | Theo de Raadt | |
2005-10-13 | spacing | Theo de Raadt | |
2005-10-13 | Make dired buffer read-only by default. | Kjell Wooding | |
Noticed by Han Boetes | |||
2005-10-13 | Make undoing of a yank operation work as expected | Kjell Wooding | |
(i.e. undo boundaries are placed around entire yanked block) ok cloder@ | |||
2005-10-13 | Use dired mode automatically if file specified for loading is | Kjell Wooding | |
a directory. Modified version of patch from Han Boetes. ok cloder@ | |||
2005-10-13 | add the (emacs) toggle-readonly keybinding (C-x C-q). | Kjell Wooding | |
Also, remove a silly non-emacsism. | |||
2005-10-13 | check if current line is null. fixes a core in dired. | Kjell Wooding | |
2005-10-13 | Fix dired mode. Make deletions work, and keystrokes match emacs. | Kjell Wooding | |
* dired-other-window should default to current buffer's path. * Remove redundant code (from Han Boetes) * Move initialization (and since we're here, fix mail-mode initialization too) * Remove redundant keymap in dired.c, and replace it with the better one that was being ignored in keymap.c. | |||
2005-10-13 | KNF and minor cleanup. Remove an impossible condition check. | Kjell Wooding | |
Also, remove annoying "now readonly" message, as this information is already reflected in the statusbar | |||
2005-10-13 | Make mg's grep and compile more path-aware, by defaulting to | Kjell Wooding | |
the path of the invoking buffer. Also, make subshell output look more like emacs (show directory, completion time). oked at one point by deraadt@ | |||
2005-10-11 | bit more consistency in the list of key bindings; | Jason McIntyre | |
ok kjell@ | |||
2005-10-11 | fix undo BUGS entry. ok deraadt@ | Kjell Wooding | |
2005-10-11 | document a few more things; kjell ok | Theo de Raadt | |
2005-10-11 | prevent trashing of errno in signal handler | Theo de Raadt | |
2005-10-11 | A while back, undo records were moved from the BUFFER struct to MGWIN. | Kjell Wooding | |
This is nonsensical, and utterly broken if you are undo-ing across multiple buffers. Change them back to being associated with the BUFFER struct. (effectively, just revert the original change) ok deraadt@ | |||
2005-10-11 | Allow the more traditional emacs keybindings during search/replace, too | Kjell Wooding | |
(i.e. 'y' to accept, 'n' to skip, and <CR> to end) ok deraadt@, cloder@ | |||
2005-10-11 | Enable the 'next-error' (C-x `) keybinding by default. | Kjell Wooding | |
Niklas, this one is for you. ok deraadt@, cloder@ | |||
2005-10-11 | Be more explicit in error prompt. ok deraadt. | Kjell Wooding | |
2005-10-06 | Add find-file-read-only keybinding (c-X c-R), as in emacs. | Kjell Wooding | |
closes PR4523. Enjoy, jason! | |||
2005-10-06 | Make mg undo much more emacs like (and correct). | Kjell Wooding | |
Undo boundaries are now placed at newlines, and undo of search-replace works as expected. Fixes bad behaviour reported by matthieu Ok deraadt@, beck@ | |||
2005-10-04 | couldn't resist... | Marco Peereboom | |
2005-09-28 | fix buflist mode; pr 4524; from jason | Theo de Raadt | |
2005-09-24 | some people suggested to put this quote in here... ok joris@ | Reyk Floeter | |
2005-08-09 | Clean up eread handling in mg. (basically, fallout from the 'enter often | Kjell Wooding | |
means abort' behaviour added during the hackathon). Eliminates redundant ereply function, fixes miscellaneous cores when aborting, and move a number of assumed pathnames into the prompt text, since they are used there anyway. All changes consistent with emacs behavior ok beck@ many, many moons ago. | |||
2005-06-14 | Add explicit public domain notices to all public domain files. | Kjell Wooding | |
ok millert@, deraadt@ |