เพื่อหาข้อมูลเกี่ยวกับการผูกกุญแจ
ในbash
:
$ bind -p | grep -a '{'
"\e{": complete-into-braces
"{": self-insert
$ LESS='+/complete-into-braces' man bash
complete-into-braces (M-{)
Perform filename completion and insert the list of possible com‐
pletions enclosed within braces so the list is available to the
shell (see Brace Expansion above).
หรือด้วยinfo
:
info bash --index-search=complete-into-braces
(หรือinfo bash
และใช้ดัชนีพร้อมความสมบูรณ์ ( i
คีย์))
อย่างไรก็ตามโปรดทราบว่าหน้าข้อมูลที่สร้างไว้ล่วงหน้าที่มาพร้อมกับแหล่งข้อมูล bash-4.3 อย่างน้อยจะหายไปบางรายการดัชนีรวมถึงสิ่งนั้นcomplete-into-braces
ด้วยดังนั้นหากระบบปฏิบัติการของคุณไม่สร้างหน้าข้อมูลจากแหล่งข้อมูล texinfo คำสั่งข้างต้นจะไม่ทำงาน
ใน zsh
$ bindkey| grep W
"^W" backward-kill-word
"^[W" copy-region-as-kill
$ info --index-search=copy-region-as-kill zsh
copy-region-as-kill (ESC-W ESC-w) (unbound) (unbound)
Copy the area from the cursor to the mark to the kill buffer.
If called from a ZLE widget function in the form 'zle
copy-region-as-kill STRING' then STRING will be taken as the text
to copy to the kill buffer. The cursor, the mark and the text on
the command line are not used in this case.
หรือman
สมมติว่าless
เพจเจอร์ต้องการbash
:
LESS='+/copy-region-as-kill' man zshall
zsh
ยังมีdescribe-key-briefly
ที่คุณสามารถผูกกับคีย์หรือลำดับคีย์เช่นCtrl+XCtrl+Hด้านล่าง:
bindkey '^X^H' describe-key-briefly
จากนั้นคุณพิมพ์Ctrl+XCtrl+Hตามด้วยคีย์หรือคีย์ผสมเพื่ออธิบาย ตัวอย่างเช่นการพิมพ์ที่Ctrl+XCtrl+Hสองครั้งจะแสดงใต้พรอมต์:
"^X^H" is describe-key-briefly
ใน tcsh
โดยพื้นฐานแล้วจะเหมือนกับzsh
ยกเว้นที่tcsh
ไม่มีหน้าข้อมูล
> bindkey | grep -a P
"^P" -> up-history
"^[P" -> history-search-backward
> env LESS=+/history-search-backward man tcsh
[...]
ในfish
:
> bind | grep -F '\ec'
bind \ec capitalize-word
> help commands
สิ่งที่ควรเริ่มต้นเว็บเบราว์เซอร์ที่คุณต้องการ และค้นหาcapitalize-word
ในนั้น