tmux কপি মোড অনুসন্ধান হাইলাইট


16

Tmux অনুলিপি মোডে অনুসন্ধানের শব্দটি হাইলাইট করার কোনও উপায় আছে কি?

নীচে আমার টিএমউক্স কনফিগারেশনটি রয়েছে:

# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix
bind a send-prefix

# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf

# set window start from 1
set -g base-index 1

# scrollback buffer n lines
set -g history-limit 5000

# C-a C-a for the last active window
bind-key C-a last-window

# Highlight active window
set-window-option -g window-status-current-bg red

# Default colors
set -g status-bg black
set -g status-fg white

#unbind %
bind - split-window -v
#unbind '"'
bind | split-window -h

setw -g aggressive-resize on
bind-key T swap-window -t 1

# To ensure keyboard shortcuts inside Vim still work, we need to enable XTerm keybindings.
# And to be sure Vim's colors aren't distorted, we enable 256 color mode
#setw -g xterm-keys on
#set-option -g default-terminal "screen-256color"


# make copy mode use hjkl
setw -g mode-keys vi # I especially like being able to search with /,? when in copy-mode
set -g status-keys vi
bind-key -t vi-edit Up   history-up
bind-key -t vi-edit Down history-down

# set shell
set -g default-command /bin/bash
set -g default-shell /bin/bash

# smart pane switching with awareness of vim splits
bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-h) || tmux select-pane -L"
bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D"
bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U"
bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-l) || tmux select-pane -R"
bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys 'C-\\') || tmux select-pane -l"

#Sets the appearance of the left sidebar
set -g status-left-length 40
set -g status-left "#[fg=colour39]❐ #S #[fg=yellow]✓ #(whoami)"

#Sets the appearance of the center
setw -g window-status-fg colour211
setw -g window-status-bg default
setw -g window-status-attr dim
setw -g window-status-current-fg white
setw -g window-status-current-bg green
setw -g window-status-current-attr bright
setw -g window-status-activity-bg red
setw -g window-status-activity-fg white
setw -g window-status-bell-fg white
setw -g window-status-bell-bg red
setw -g window-status-bell-attr bold

#Sets the appearance of the right sidebar, i.e time and clock.
set -g status-right "#[fg=colour136, bright]ℹ %d %b %R"
set -g status-utf8 on
set -g status-interval 60
set -g status-justify centre

উত্তর:


9

Tmux অনুসন্ধান হাইলাইটিং সম্পর্কে আমি এই তথ্যটি পেয়েছি:

বিকাশকারী 1 এর মতে, বর্তমানে টিএমউক্সে এটি সম্ভব নয়। http://sourceforge.net/mailarchive/message.php?msg_id=27427973

উত্স: tmux- এ আমি কীভাবে অনুসন্ধানের ফলাফলটি হাইলাইট করব?


6

এই বৈশিষ্ট্যটি tmux সংস্করণ ২.৪ এবং এর পরে যুক্ত করা হয়েছে বলে মনে হয়।

মাধ্যমে দেখার জন্যে tmux মুক্তির নোট :

    CHANGES FROM 2.3 TO 2.4, 20 April 2017
     * All occurrences of a search string in copy mode are now highlighted;
       additionally, the number of search results is displayed. The highlighting
       updates interactively with the default emacs key bindings (incremental
       search).

2

tmux-copycat এই প্লাগইনটি ব্যবহার করে দেখুন

  • সমর্থন হাইলাইট অনুসন্ধান
  • উপসর্গ + / দ্রুত অনুসন্ধান মোডে প্রবেশ করুন
  • স্বয়ংক্রিয় পরিষ্কার অনুসন্ধান মোড (F7 অনুসন্ধানে, পরবর্তী সময় অনুসন্ধান শেষ বিবৃতি রাখবে)

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