নিয়মিত অভিব্যক্তি সহ ইতিহাস অনুসন্ধান বিপরীত করুন


10

আমি সাধারণ রেগুলার এক্সপ্রেশন (বা কেবলমাত্র একাধিক মিল) সমর্থন সহ বিপরীত বর্ধিত অনুসন্ধানের অনুমতি দেওয়ার জন্য একটি সরঞ্জাম খুঁজছি। উদাহরণস্বরূপ, যদি আমি 'foo বার বাজ' কমান্ডটি সন্ধান করতে চাই, কমান্ডটি দ্রুত খুঁজে পেতে আমি নীচের মতো কিছু করতে পারি:

সিআরটিএল-আর (অনুসন্ধান শুরু করে) 'foo' টাইপ করুন (foo ব্যবহার করে সাম্প্রতিক কমান্ডের সাথে মেলে) 'foo | বাজ' টাইপ করা চালিয়ে যায় ('foo' এবং 'বাজ' যুক্ত সাম্প্রতিক কমান্ডের সাথে মেলে।

এর মতো কিছু আছে কি? যদি না হয় তবে কীভাবে আমি নিজে এটি প্রয়োগ করতে পারি?

উত্তর:


4

কাস্টম উইজেট history-incremental-multi-searchজন্যzsh

সেটআপ

একটি ডিরেক্টরি তৈরি করুন এবং এটি আপনার অন্তর্ভুক্ত করুন $fpathউদাহরণস্বরূপ, আমি একটি ডিরেক্টরি তৈরি করেছি এবং আমার ~/.zsh/functionsমধ্যে লাইন ।fpath=($HOME/.zsh/functions $fpath).zshrc

নিম্নলিখিত history-incremental-multi-searchডিরেক্টরিতে নামক একটি ফাইল রাখুন ।

emulate -L zsh
setopt extended_glob

local oldbuffer=$BUFFER
local -i oldcursor=$CURSOR

local dir                # search direction
local chars              # input buffer
local -a words           # search terms
local -a found           # all history items that match first term
local -i hindex=$HISTNO  # current 
local -i lmatch          # last matched history item (for prev/next)

if [[ $WIDGET == *forward* ]]; then
    dir=fwd
else
    dir=bck
fi

function find-next {
    # split the input buffer on spaces to get search terms
    words=(${(s: :)chars})

    # if we have at least one search term
    if (( $#words )); then
        # get all keys of history items that match the first
        found=(${(k)history[(R)*$words[1]*]})
        if (( $#found )); then
            # search in widget direction by default
            # but accept exception in $1 for "prev match"
            search-${1:-$dir}
        else
            # no matches
            lmatch=$HISTNO
        fi
    else
        # no search terms
        lmatch=$HISTNO
        BUFFER=$oldbuffer
        CURSOR=$oldcursor
    fi
}

function search-fwd {
    # search forward through matches
    local -i i
    for (( i = $#found; i > 0; i-- )); do
        # but not before hindex as we're searching forward
        if [[ $found[$i] -gt $hindex ]]; then
            set-match $found[$i]
        fi
    done
}

function search-bck {
    # search backward through matches
    local -i i
    for (( i = 1; i <= $#found; i++ )); do
        # but not beyond hindex as we're searching backward
        if [[ $found[$i] -lt $hindex ]]; then
            set-match $found[$i]
        fi
    done
}

function set-match {
    # match history item against all terms and select it if successful
    local match=1
    local -i i
    for (( i = 2; i <= $#words; i++ )); do
        if [[ $history[$1] != *$words[$i]* ]]; then
            match=0
            break
        fi
    done
    if [[ $match -ne 0 ]]; then
        lmatch=$1
        BUFFER=$history[$1]
        CURSOR=$#BUFFER
        break
    fi
}

# display sub prompt
zle -R "${dir}-i-search-multi:"

# handle input keys
while read -k; do
    case $REPLY in
        # next
        $'\C-n' )
            hindex=$lmatch
            find-next
            ;;
        # prev
        $'\C-p' )
            hindex=$lmatch
            if [[ $dir == fwd ]]; then
                find-next bck
            else
                find-next fwd
            fi
            ;;
        # break
        $'\e' | $'\C-g' )
            BUFFER=$oldbuffer
            CURSOR=$oldcursor
            break
            ;;
        # accept
        $'\C-m' | $'\C-j' )
            if [[ $lmatch -eq $HISTNO ]]; then
                BUFFER=$oldbuffer
                CURSOR=$oldcursor
            else
                HISTNO=$lmatch
            fi
            break
            ;;
        # erase char
        $'\C-h' | $'\C-?' )
            chars=$chars[1,-2]
            hindex=$HISTNO
            find-next
            ;;
        # erase word
        $'\C-w' )
            if [[ $chars =~ \  ]]; then
                chars=${chars% *}
            else
                chars=
            fi
            hindex=$HISTNO
            find-next
            ;;
        # kill line
        $'\C-u' )
            chars=
            hindex=$HISTNO
            find-next
            ;;
        # add unhandled chars to buffer
        * )
            chars=${chars}${REPLY}
            hindex=$HISTNO
            find-next
            ;;
    esac

    zle -R "${dir}-i-search-multi: $words"
done

এটি থেকে রাখুন বা এটি থেকে আপনার উত্স .zshrc:

autoload -U history-incremental-multi-search

# make new widgets from function
zle -N history-incremental-multi-search-backward history-incremental-multi-search
zle -N history-incremental-multi-search-forward history-incremental-multi-search

# bind the widgets to keys
bindkey '^Xr' history-incremental-multi-search-backward
bindkey '^Xs' history-incremental-multi-search-forward

ব্যবহার

আপনি এখন সঙ্গে একটি অনগ্রসর ক্রমবর্ধমান অনুসন্ধান শুরু করতে সক্ষম হওয়া উচিত Ctrl+X, r, সামনে দিয়ে Ctrl+X, s

আপনার অনুসন্ধানের পদগুলি স্থান দ্বারা পৃথক করে টাইপ করুন। এটি নিয়ন্ত্রণ করতে নিম্নলিখিত কীগুলি উপলব্ধ:

  • ← Backspace: চরিত্র মুছুন

  • Ctrl+W: শব্দ মুছে ফেলুন

  • Ctrl+U: কিল লাইন

  • Ctrl+N: পরবর্তী খেলা

  • Ctrl+P: আগের ম্যাচ

  • Ctrl+G/ Esc: অনুসন্ধান বাতিল করুন

  • Enter: গ্রহণ

এই সমাধানটি সম্ভবত কিছুটা সহজ করা যেতে পারে। উন্নতির জন্য প্রচুর জায়গা সহ এটি ধারণার আরও কার্যকরী প্রমাণ।


এই উত্তরগুলি লিখতে সময় দেওয়ার জন্য আপনাকে ধন্যবাদ, এটি আমাকে প্রচুর সাহায্য করে। আমি আশা করি আরও লোকেরা এটিকে হোঁচট খায় এবং এটি দরকারী বলে মনে করেন।
ড্রুব্রোব

6

আপনি আপনার ইতিহাসের মাধ্যমে গ্রেপ করতে পারেন:

history | egrep '(foo|baz)'

আমি আশা করি এটি সাহায্য করবে.


0

@ পেথের উত্তরে বিল্ডিং:

Zsh এখন আসে history-incremental-pattern-search-backward, আপনার নিজের এটি সংজ্ঞায়িত করার দরকার নেই। কেবল কী বাইন্ডিং যুক্ত করুন। আমি ^Rনিম্নলিখিত লাইনটি যুক্ত করে ওভাররাইড করতে পছন্দ করি .zshrc:

bindkey '^R' history-incremental-pattern-search-backward

এখন আপনি ব্যবহার করতে পারেন উল্লিখিত glob আপনার অনুসন্ধানে (এসআইসি! Rexex নয়) অপারেটর।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.