aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-31 02:51:50 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-31 02:51:50 +1000
commit521d09b6d0264aaac17b9359ebcb1a0cb6ca8906 (patch)
tree7297a413ff9a5d020c1691e7727e3b22a0bc8175 /reader.h
parent3efb0bf5cf7b799b8df039e4fa3dd593248dc415 (diff)
Add support for calculating completions for arbitrary commands through the 'complete' builtin
darcs-hash:20060130165150-ac50b-5e2ef3bb0298dd5e1a5d6fbdade314cc73ef36f3.gz
Diffstat (limited to 'reader.h')
-rw-r--r--reader.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/reader.h b/reader.h
index de0d6b5e..3f8b52f3 100644
--- a/reader.h
+++ b/reader.h
@@ -153,27 +153,6 @@ void reader_set_prompt( wchar_t *prompt );
int exit_status();
/**
- Find the beginning and the end of the current subshell
-*/
-void reader_current_subshell_extent( wchar_t **a, wchar_t **b );
-
-/**
- Find the beginning and the end of the job under the cursor
-*/
-void reader_current_job_extent( wchar_t **a, wchar_t **b );
-
-/**
- Find the beginning and the end of the process under the cursor
-*/
-void reader_current_process_extent( wchar_t **a, wchar_t **b );
-
-/**
- Find the beginning and the end of the token under the curor and the token before the cursor
-*/
-
-void reader_current_token_extent( wchar_t **a, wchar_t **b, wchar_t **pa, wchar_t **pb );
-
-/**
Replace the current token with the specified string
*/
void reader_replace_current_token( wchar_t *new_token );