search for: rl_completion_append_charact

Displaying 4 results from an estimated 4 matches for "rl_completion_append_charact".

2002 Jun 11
1
[Bug 200] readline support for sftp
...2: readline/readline.h: No such file or directory sftp-int.c:33: readline/history.h: No such file or directory *** Error code 1 readline.h and history.h are in /usr/include/. Fixing that and moving on, I got gcc [flags] -c sftp-int.c sftp-int.c: In function `rl_remote_match': sftp-int.c:901: `rl_completion_append_character' undeclared (first use in this function) sftp-int.c:901: (Each undeclared identifier is reported only once sftp-int.c:901: for each function it appears in.) sftp-int.c: In function `rl_remote_list': sftp-int.c:930: warning: implicit declaration of function `rl_display_match_list' sf...
2009 Nov 10
1
How to remove/prevent trailing space after tab completion in R shell
Hi - Not a mission critical issue, but still highly annoying. I just upgraded R to 2.10.0 (the binary for Ubuntu karmic) and the tab completion facility now inserts a space after every completed term (something it didn't do in 2.9.0 or 2.9.2). It wouldn't be an issue so much if it weren't for the fact that it screws up tab-completing the next term, i.e. if I have a list of lists of
2009 Nov 09
1
use STREQ(a,b), not strcmp(a,b) == 0
...ths.c +++ b/fish/destpaths.c @@ -215,7 +215,7 @@ complete_dest_paths_generator (const char *text, int state) word = &words[index]; index++; - if (strncasecmp (word->name, text, len) == 0) { + if (STRCASEEQLEN (word->name, text, len)) { if (word->is_dir) rl_completion_append_character = '/'; diff --git a/fish/fish.c b/fish/fish.c index 0387eb7..3f534de 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -1350,7 +1350,7 @@ resolve_win_path (const char *path) path += 4; /* Drop drive letter, if it's "C:". */ - if (strncasecmp (path, "c:", 2) ==...
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...} + } + } + } + + guestfs_free_dirent_list (dirents); + } } } @@ -219,7 +219,7 @@ complete_dest_paths_generator (const char *text, int state) if (strncasecmp (word->name, text, len) == 0) { if (word->is_dir) - rl_completion_append_character = '/'; + rl_completion_append_character = '/'; return strdup (word->name); } diff --git a/fish/fish.c b/fish/fish.c index b0d123d..f245de1 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -91,36 +91,36 @@ static void usage (void) { fprintf (stderr, - _(...