mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Minor comment edits and removal of a warning
darcs-hash:20061118212459-ac50b-d6f4dddb560b4815ca850f9e9c3e8d7a5cf5ea70.gz
This commit is contained in:
parent
eb3c99c54e
commit
dd061b1dda
5 changed files with 4 additions and 6 deletions
|
@ -1325,8 +1325,6 @@ g++, javac, java, gcj, lpr, doxygen, whois, find)
|
|||
- Reduce the space of the pager by one line to allow the commandline to remain visible.
|
||||
- down-arrow could be used to save the current command to the history. Or give the next command in-sequnce. Or both.
|
||||
- A pretty-printer.
|
||||
- Help messages for builtin should not be compiled into fish, they should be kept in a separate directory
|
||||
- Shellscript functions should be able to show help on the commandline instead of launching a browser
|
||||
- Drop support for inputrc-files. Use shellscripts and the bind builtin. Also, redo the syntax for the bind builtin to something more sane.
|
||||
- History could reload itself when the file is updated. This would need to be done in a clever way to avoid chain reactions
|
||||
- The error function should probably be moved into it's own library, and be made mere general purpose.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/** \file env_universal.h
|
||||
Universal variable client library
|
||||
Universal variable client library.
|
||||
*/
|
||||
|
||||
#ifndef ENV_UNIVERSAL_H
|
||||
|
|
2
parser.c
2
parser.c
|
@ -1,6 +1,6 @@
|
|||
/** \file parser.c
|
||||
|
||||
The fish parser. Contains functions for parsing code.
|
||||
The fish parser. Contains functions for parsing and evaluating code.
|
||||
|
||||
*/
|
||||
|
||||
|
|
2
proc.c
2
proc.c
|
@ -879,7 +879,7 @@ static int terminal_give_to_job( job_t *j, int cont )
|
|||
}
|
||||
|
||||
/**
|
||||
REturns contol of the terminal
|
||||
Returns contol of the terminal to the shell
|
||||
*/
|
||||
static int terminal_return_from_job( job_t *j)
|
||||
{
|
||||
|
|
2
reader.c
2
reader.c
|
@ -1368,7 +1368,7 @@ static void handle_token_history( int forward, int reset )
|
|||
{
|
||||
if( current_pos == -1 )
|
||||
{
|
||||
wchar_t *item;
|
||||
const wchar_t *item;
|
||||
|
||||
/*
|
||||
Move to previous line
|
||||
|
|
Loading…
Reference in a new issue