Hi all,

here's a small patch.

Bye,
Tassilo

New patches:

[svn-delete-completion.dpatch
Tassilo Horn <[EMAIL PROTECTED]>**20061221212334] {
hunk ./share/completions/svn.fish 15
+complete -c svn -n '__fish_use_subcommand' -xa 'delete\t"'(_ "Remove file or 
directory from version control")'"'
hunk ./share/completions/svn.fish 122
+#
+# Flags for svn delete
+#
+set -l deleteopt -c svn -n 'contains delete (commandline -poc)'
+complete $deleteopt -l force -d (N_ "force operation to run")
+complete $deleteopt -s q -l quiet -d (N_ "print as little as possible")
+complete $deleteopt -l targets -d (N_ "pass contents of file ARG as additional 
args")
+
}

Context:

[Fix yet another place where the 'builtin' builtin was used in stead of 
'command'
[EMAIL PROTECTED] 
[Make the directory history keyboard shortcuts repaint the screen. Otherwise, 
the prompt won't reflect the new CWD. This is needed because of the reduced 
amounts of repainting done since 1.22.2
[EMAIL PROTECTED] 
[Minor highlighting tweaks to make highlighter handle switches to 'command' and 
'builtin' builtins more correctly
[EMAIL PROTECTED] 
[Do not add --help completions for builtins at init time. These completions are 
already present in the commmand specific completions
[EMAIL PROTECTED] 
[Fix incorrect use of the 'builtin' builtin when the 'command' builtin was 
intended
[EMAIL PROTECTED] 
[Make tab completion of process expansion consider other processes than those 
owned by the shell. Also makes tab completion of process expansion properly 
handle paths in command names
[EMAIL PROTECTED] 
[Make sure debug() never alters errno, so that it can safely be called between 
an error and calling wperror()
[EMAIL PROTECTED] 
[Minor correction to script for extracting translation strings
[EMAIL PROTECTED] 
[Make syntax highlighter flag  invalid command types as subcommands for 
'command' or 'builtin' builtins. Also make sure that the '--' switch is 
understood by the highlighter
[EMAIL PROTECTED] 
[Only complelete valid command types as subcommands for 'command' or 'builtin' 
builtins. Also make sure that the '--' switch is understood by the completions
[EMAIL PROTECTED] 
[Make sure that a command is never executed as the subcommand of the 'builtin' 
builtin
[EMAIL PROTECTED] 
[Minor code tweaks. Move a few deeple nested pieces of code to their own 
functions. There are lots of other places where this should be done as well.
[EMAIL PROTECTED] 
[Make the builtins 'and', 'or', 'not', 'exec', 'command' and 'builtin' respect 
the '--' argument
[EMAIL PROTECTED] 
[Code cleanup: Use a macro constant instead fo a literal for builtin exit codes
[EMAIL PROTECTED] 
[Update functions builtin so that default behaviour when not given any 
arguments is to print only names of all existing functions, not their 
definitions. Use 'functions (functions)' to get the latter.
[EMAIL PROTECTED] 
[Drop unneeded '--' when using set builtin in various places
[EMAIL PROTECTED] 
[Drop unneeded '--' when using set builtin in the trap function
[EMAIL PROTECTED] 
[Minor fix to help generation to avoid creating a stray doxygen file in 
share/man
[EMAIL PROTECTED] 
[Use the math function instead of calling bc directly in various places
[EMAIL PROTECTED] 
[Extend documentation for the math function
[EMAIL PROTECTED] 
[Make sure the rm command and not a wrapper function that could change its 
behaviour is used. This patch was written by David Bitseff.
[EMAIL PROTECTED] 
[Make sure cwd colors update when the variable changes. This is a common 
regression, it seems. This time it was caused by the repaint reductions added 
in 1.22.2.
[EMAIL PROTECTED] 
[Update to the ':' patch by Nicholas Burlett. This patch makes sure that ':' 
style executing of a command is only performed if a regular call to execve 
fails. This should improve performance a mall bit in the common case.
[EMAIL PROTECTED] 
[Fix broken example in the documentation for the begin builtin
[EMAIL PROTECTED] 
[Add completions for flac, written by David Bitseff
[EMAIL PROTECTED] 
[Add completions for oggenc, written by David Bitseff
[EMAIL PROTECTED] 
[Minor documentation update
[EMAIL PROTECTED] 
[colon-command support
[EMAIL PROTECTED]
 
 Shells such as bash, sh, tcsh, and ksh each support a "colon command" that 
causes the script to be
 evaluated as a bourne script. In the case of bash and sh, this command is a 
no-op. For others, 
 it means the script has sh syntax. 
 
 To suppor this in fish, I've added code to launch_process that checks for a 
':' as the first
 character of p->actual_cmd. If it is a colon, the process descriptor is 
modified to call
 /bin/sh, which should exist on any POSIX system. 
 
] 
[Add dcop completions, written by David Bitseff
[EMAIL PROTECTED] 
[ruby-gems-completion.dpatch
Tassilo Horn <[EMAIL PROTECTED]>**20061208232818] 
[Fix off-by-one error making it impossible to edit the first element of an 
array using array slicing. Thanks to useer for reporting this bug.
[EMAIL PROTECTED] 
[Bump version number
[EMAIL PROTECTED] 
[Update comlpetions for the help function
[EMAIL PROTECTED] 
[Make delete-or-exit work with multiline commands
[EMAIL PROTECTED] 
[Update user documentation - add section on internal completion functions, 
update todo list, minor documentation tweaks
[EMAIL PROTECTED] 
[Add ant target completions, written by Nate Drake
[EMAIL PROTECTED] 
[Do not highlight parameters beginning with a '-' as switches if the '--' 
parameter has been given
[EMAIL PROTECTED] 
[Add completions for the env command
[EMAIL PROTECTED] 
[Add completions for the locate command
[EMAIL PROTECTED] 
[Add subcommand completion support to nice completions
[EMAIL PROTECTED] 
[Rename __fish_complete_directory to increase consistency
[EMAIL PROTECTED] 
[Flash commandline each time completion fails, not just the first one
[EMAIL PROTECTED] 
[Only flash commandline, not entire screen, when completion fails
[EMAIL PROTECTED] 
[Add completions for the find command
[EMAIL PROTECTED] 
[Make keyboard shortcuts that execute a shellscript function (^D, for example) 
a lot quicker. This is done by not changing the titlebar message or reexecuting 
the prompt. A full repaint is still performed though. This patch also changes 
the behaviour of the 'null' virtual keypress - it no longer reexecutes the 
prompt, it only causes a repaint.
[EMAIL PROTECTED] 
[Improve kill completions on non-Debian systems (They where fine before on 
Debian systems)
[EMAIL PROTECTED] 
[Remove fallback of using globals when universal variables are broken in config 
file- fish does the equivalen internally now
[EMAIL PROTECTED] 
[Use dircolors to set default colors for ls
[EMAIL PROTECTED] 
[Fix bug in save_function script
[EMAIL PROTECTED] 
[Fix bed indentation in a few places
[EMAIL PROTECTED] 
[Minor documentation, indentation tweaks
[EMAIL PROTECTED] 
[Makefile tweakage - make sure build messages suggest using correct make version
[EMAIL PROTECTED] 
[Add --without-gettext switch to optionally disable gettext support
[EMAIL PROTECTED] 
[Fix bug in save_function that causes it to not create missing directory 
entries before saving function
[EMAIL PROTECTED] 
[Replace all internal uses of grep with sgrep, which is a wrapper around grep 
that strips away any GREP_OPTIONS. This is needed to avoid users who have added 
arbitrary switches to GREP_OPTIONS, thus changing its behaviour.
[EMAIL PROTECTED] 
[Don't use GREP_OPTIONS in 'contains' function - this is a modified version of 
a patch by David Bitseff
[EMAIL PROTECTED] 
[Make sure that non-exporeted variables can shadow exported ones. This problem 
was reported by David Bitseff.
[EMAIL PROTECTED] 
[Add missing rulers in faq
[EMAIL PROTECTED] 
[Fix missing code snippet in faq. Thank you to Binny V A for reporting this bug.
[EMAIL PROTECTED] 
[Make completion descriptions on symlinks to directories have their own 
description
[EMAIL PROTECTED] 
[Fix bug where tab completions for implicit 'cd' would ignore symbolic links to 
directories
[EMAIL PROTECTED] 
[Drop the old, unused fish manual page
[EMAIL PROTECTED] 
[Simplify documentation building - again.
[EMAIL PROTECTED] 
[Add completions for the wajig command. These where generated by the 
create_wajig_completions.py script, written by Reuben Thomas.
[EMAIL PROTECTED] 
[Touch up completions for builtin commands
[EMAIL PROTECTED] 
[Minor edits, whitespace fixes, etc.
[EMAIL PROTECTED] 
[Minor code edit - move a bit of code into its own function
[EMAIL PROTECTED] 
[Correctly handle multiple backslashes at end of line w.r.t. multiline handling
[EMAIL PROTECTED] 
[Fix missing man-page generation when building from darcs tree. Also simplifys 
doc generation a small bit.
[EMAIL PROTECTED] 
[Simplify Makefile by using a wildcard to specify help files
[EMAIL PROTECTED] 
[Add missing help text for the save_function function
[EMAIL PROTECTED] 
[Support bold and underlined characters in help output
[EMAIL PROTECTED] 
[Minor comment edits and removal of a warning
[EMAIL PROTECTED] 
[Move the event handler for fish_color_cwd to init file, so it is not 
autounloaded. Also cache output of call to set_color command to improve 
performance a bit.
[EMAIL PROTECTED] 
[After processing a signal/event while waiting for commandline input, check the 
lookahead buffer for inserted characters
[EMAIL PROTECTED] 
[Update documentation display code to run roff on the client system instead of 
pregenerating documentation and compiling it into program binaries
[EMAIL PROTECTED] 
[Speed up history token search
[EMAIL PROTECTED] 
[Update todo list
[EMAIL PROTECTED] 
[Add missing include in screen.c
[EMAIL PROTECTED] 
[Tweak error messages in tokenizer a bit
[EMAIL PROTECTED] 
[Add a bugreport function for writing out a message about how to file bug 
reports
[EMAIL PROTECTED] 
[Complete using known repos in darcs
[EMAIL PROTECTED] 
[Make hitory token search interruptible. This code was written by Netocrat.
[EMAIL PROTECTED] 
[Don't intern as much completion data - this helps reduce memory usage when 
autounloading
[EMAIL PROTECTED] 
[Only do command description lookup if we have non-directory commands
[EMAIL PROTECTED] 
[Use halloc to simplyfy allocations in function.c
[EMAIL PROTECTED] 
[Drop search highlighting when exiting search mode. Thanks to Philip Ganchev 
and Martin Bähr for the bug reports.
[EMAIL PROTECTED] 
[A few additional input checks, minor code simplifications, and some 
indentation/documentation fixes
[EMAIL PROTECTED] 
[Remove getpgid prototype from exec.c - this prototype seems to be no longer 
missing
[EMAIL PROTECTED] 
[Make fish store universal variables locally if fishd can't be started - local 
changes are lost of the fishd connection is restored
[EMAIL PROTECTED] 
[Use fcntl to automatically close fishd socken on exec instead of handling it 
manually
[EMAIL PROTECTED] 
[Add support for detecting and handling the screen-specific \ek\e\ escape 
sequence for setting the titlebar message in the prompt calculating code.
[EMAIL PROTECTED] 
[TAG 1.22.1
[EMAIL PROTECTED] 
Patch bundle hash:
b787bd2b8b9aa7af7eb0fdacc1de9f99ebc474ab
-- 
* delYsid has mortgage, opportunity and penis in his score file.
<delYsid> thats pretty effective against spam
<Luke> aren't you worried about missing opportunities to mortgage
       your penis?
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Fish-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fish-users

Reply via email to