mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:37:45 +00:00
Base: Add some default completions to shellrc
This commit is contained in:
parent
1699ddc186
commit
302a0c54f0
4 changed files with 111 additions and 1 deletions
76
Base/usr/share/shell/completion/builtin.sh
Normal file
76
Base/usr/share/shell/completion/builtin.sh
Normal file
|
@ -0,0 +1,76 @@
|
|||
#!/bin/Shell
|
||||
|
||||
_complete_unalias() {
|
||||
shift 2
|
||||
argsparser_parse \
|
||||
--add-positional-argument names --help-string _ --value-name _ --short-name '' --min 0 --max 9999 \
|
||||
-- $*
|
||||
name=''
|
||||
if test ${length $names} -ne 0 {
|
||||
name="$names[-1]"
|
||||
}
|
||||
invariant="${length $name}"
|
||||
for $(alias | grep "^$name") {
|
||||
n=${regex_replace '"' '\"' ${regex_replace '\\([^\\])' '\1' ${regex_replace '=.*' '' "$it"}}}
|
||||
v=${regex_replace '"' '\"' ${regex_replace '\\([^\\])' '\1' ${regex_replace '[^=]*=' '' "$it"}}}
|
||||
echo '{"kind":"plain","completion":"'"$n"'", "trailing_trivia":" ", "display_trivia":"'"$v"'", "invariant_offset": '$invariant'}'
|
||||
}
|
||||
}
|
||||
|
||||
__complete_job_spec() {
|
||||
match $1 as hint {
|
||||
%?* as (name) {
|
||||
for $(jobs | grep "$name") {
|
||||
id=''
|
||||
match $it {
|
||||
[*]\ * as (i _) { id=$i }
|
||||
* { continue }
|
||||
}
|
||||
echo '{"kind":"plain","static_offset":'"${length "?$name"}"',"invariant_offset":0,"completion":"'"$id"'"}'
|
||||
}
|
||||
}
|
||||
%* as (id) {
|
||||
invariant=${length $id}
|
||||
for $(jobs | grep "^\\[$id\\d+\\]") {
|
||||
id=''
|
||||
match $it {
|
||||
[*]\ * as (i _) { id=$i }
|
||||
* { continue }
|
||||
}
|
||||
echo '{"kind":"plain","static_offset":0,"invariant_offset":'"$invariant"',"completion":"'"$id"'"}'
|
||||
}
|
||||
}
|
||||
(?<pid>^\d+$) {
|
||||
invariant=${length $pid}
|
||||
for $(ps -e | grep "^ *$pid") {
|
||||
id=''
|
||||
description=''
|
||||
match $it {
|
||||
"*$pid* *" as (_ i rest) { id="$pid$i" description="$rest" }
|
||||
* { continue }
|
||||
}
|
||||
echo '{"kind":"plain","static_offset":0,"invariant_offset":'"$invariant"',"completion":"'"$id"'","display_trivia":"'"$description"'"}'
|
||||
}
|
||||
}
|
||||
* as (name) {
|
||||
static="${length $name}"
|
||||
for $(ps -e | grep "$name") {
|
||||
id=''
|
||||
description=''
|
||||
match $it {
|
||||
(?: *(?<pid>\d+) (?<rest>.*)) { id="$pid" description="$rest" }
|
||||
* { continue }
|
||||
}
|
||||
echo '{"kind":"plain","static_offset":'"$static"',"invariant_offset":0,"completion":"'"$id"'","display_trivia":"'"$description"'","allow_commit_without_listing":false}'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_complete_kill() {
|
||||
if test $*[-1] = '--' {
|
||||
__complete_job_spec ''
|
||||
} else {
|
||||
__complete_job_spec $*[-1]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue