zsh menyelesaikan tab pada baris kosong

12

Saya ingin tcsh'ism yang belum dapat saya temukan: Pada baris kosong tanpa konten, saya ingin menekan tombol tab dan melihat yang setara dengan ls. Artinya saya ingin

$ <tab>

untuk melakukan sesuatu selain memberi saya \ t. Saya telah menemukan sumber daya yang luar biasa untuk penyelesaian perintah, tetapi tidak untuk kasus dasar ini. Bantuan apa pun ini akan sangat bagus! Terima kasih.

Kristopolous
sumber

Jawaban:

8
# expand-or-complete-or-list-files
function expand-or-complete-or-list-files() {
    if [[ $#BUFFER == 0 ]]; then
        BUFFER="ls "
        CURSOR=3
        zle list-choices
        zle backward-kill-word
    else
        zle expand-or-complete
    fi
}
zle -N expand-or-complete-or-list-files
# bind to tab
bindkey '^I' expand-or-complete-or-list-files
John Eikenberry
sumber
Sangat rapi. Apakah mungkin menyembunyikan daftar itu lagi? Tab-to-show maka tab-to-hide akan menyenangkan.
Parker Coates
Terima kasih John, saya menemukan solusi Anda dan beradaptasi di sini stackoverflow.com/questions/28729851/...
lolesque
7

Perilaku Tabpada awal garis dikendalikan oleh gaya . Namun, hanya ada dua perilaku yang didukung:insert-tab

  • selesai seperti biasa, di bawah zstyle ':completion:*' insert-tab false
  • masukkan tab, di bawah zstyle ':completion:*' insert-tab true
  • salah satu atau yang lainnya di bawah zstyle ':completion:*' insert-tab pending[=N]

Jika Anda hanya ingin menyelesaikan perintah di posisi itu, zstyle ':completion:*' insert-tab truelakukan. Jika Anda menginginkan sesuatu yang berbeda, seperti mendaftarkan file di direktori saat ini, Anda perlu memodifikasi _main_complete.

Sebuah utas terbaru tentang daftar pekerja zsh dibahas insert-tab.

Gilles 'SANGAT berhenti menjadi jahat'
sumber
fantastis! Dengan _main_complete, sepertinya Anda mereferensikan suatu tempat dalam kode C? Saya minta maaf atas pertanyaan bodoh, tetapi di mana itu dapat ditemukan?
1
@ user535759: Tidak, _main_completeadalah bagian dari kode zsh yang mengimplementasikan penyelesaian. Ada di Completion/Base/Core/_main_completedalam pohon sumber, biasanya dipasang di lokasi seperti /usr/share/zsh/functions/Completion/Base/_main_complete.
Gilles 'SANGAT berhenti menjadi jahat'
@ llua Mengubah gaya yang dikaitkan dengan -command-tidak menyebabkan <Tab> mencantumkan file di direktori saat ini. Yang Anda lakukan adalah membatasi kecocokan untuk menghilangkan nama perintah. Tetapi hanya hal-hal yang akan diselesaikan dalam posisi ini yang terdaftar, jadi bukan file dalam direktori saat ini (hanya direktori dan executable tergantung pada autocddan PATH).
Gilles 'SANGAT berhenti menjadi jahat'
3

Berikut ini adalah implementasi lengkap autolist tcsh di zsh, saat Anda menekan tab pada baris kosong

% <TAB>

Ini dia:

# list dir with TAB, when there are only spaces/no text before cursor,
# or complete words, that are before cursor only (like in tcsh)
tcsh_autolist() { if [[ -z ${LBUFFER// } ]]
    then BUFFER="ls " CURSOR=3 zle list-choices
    else zle expand-or-complete-prefix; fi }
zle -N tcsh_autolist
bindkey '^I' tcsh_autolist

Jika Anda ingin meniru tcsh lebih dekat, tambahkan juga ini ke .zshrc Anda:

unsetopt always_last_prompt       # print completion suggestions above prompt
ILUXA
sumber
2

Saya menulis widget zsh ini yang meningkatkan penggunaan TAB, tidak hanya pada baris kosong, tetapi juga saat Anda mengetikkan perintah.

  • Ini akan menampilkan file pada baris perintah kosong, dan di tengah-tengah perintah apa pun.
  • Ini akan menampilkan direktori pada baris perintah kosong.
  • Ini akan menampilkan executable pada baris perintah kosong.

Ini dapat dikonfigurasi untuk menambahkan "cd" atau "./" dalam kasus-kasus tersebut dengan variabel global.

export TAB_LIST_FILES_PREFIX

tab_list_files_example

# List files in zsh with <TAB>
#
# Copyleft 2017 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
# GPL licensed (see end of file) * Use at your own risk!
#
# Usage:
#   In the middle of the command line:
#     (command being typed)<TAB>(resume typing)
#
#   At the beginning of the command line:
#     <SPACE><TAB>
#     <SPACE><SPACE><TAB>
#
# Notes:
#   This does not affect other completions
#   If you want 'cd ' or './' to be prepended, write in your .zshrc 'export TAB_LIST_FILES_PREFIX'
#   I recommend to complement this with push-line-or edit (bindkey '^q' push-line-or-edit)
function tab_list_files
{
  if [[ $#BUFFER == 0 ]]; then
    BUFFER="ls "
    CURSOR=3
    zle list-choices
    zle backward-kill-word
  elif [[ $BUFFER =~ ^[[:space:]][[:space:]].*$ ]]; then
    BUFFER="./"
    CURSOR=2
    zle list-choices
    [ -z ${TAB_LIST_FILES_PREFIX+x} ] && BUFFER="  " CURSOR=2
  elif [[ $BUFFER =~ ^[[:space:]]*$ ]]; then
    BUFFER="cd "
    CURSOR=3
    zle list-choices
    [ -z ${TAB_LIST_FILES_PREFIX+x} ] && BUFFER=" " CURSOR=1
  else
    BUFFER_=$BUFFER
    CURSOR_=$CURSOR
    zle expand-or-complete || zle expand-or-complete || {
      BUFFER="ls "
      CURSOR=3
      zle list-choices
      BUFFER=$BUFFER_
      CURSOR=$CURSOR_
    }
  fi
}
zle -N tab_list_files
bindkey '^I' tab_list_files

# uncomment the following line to prefix 'cd ' and './' 
# when listing dirs and executables respectively
#export TAB_LIST_FILES_PREFIX

# these two lines are usually included by oh-my-zsh, but just in case
autoload -Uz compinit
compinit

# uncomment the following line to complement tab_list_files with ^q
#bindkey '^q' push-line-or-edit

# License
#
# This script is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this script; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
# Boston, MA  02111-1307  USA
nachoparker
sumber