-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Utilize Tmux Plugin Manager to gain functionality #75
base: master
Are you sure you want to change the base?
Conversation
.tmux.conf
Outdated
@@ -1,49 +1,44 @@ | |||
# bind -T copy-mode-vi v send-keys -X begin-selection |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With current config this is rectangle-toggle
.tmux.conf
Outdated
@@ -1,49 +1,44 @@ | |||
# bind -T copy-mode-vi v send-keys -X begin-selection | |||
# bind -T copy-mode-vi V send-keys -X rectangle-toggle |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With current config this is select-line
.tmux.conf
Outdated
# set-option -g -q mouse on | ||
# bind-key -T root WheelUpPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; copy-mode -e; send-keys -M" | ||
# bind-key -T root WheelDownPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; send-keys -M" | ||
# bind-key -T copy-mode-vi WheelUpPane send-keys -X halfpage-up |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With current config copy-mode-vi
wheel motion is the same with the exception of being 5 lines instead of half page
.tmux.conf
Outdated
# | ||
# # Mouse options for tmux >= 2.5 | ||
# set-option -g -q mouse on | ||
# bind-key -T root WheelUpPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; copy-mode -e; send-keys -M" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With current config, these should be covered and can be removed.
* tmux-sensible * tmux-yank * tmux-pain-control * tmux-resurrect Co-authored-by: Matt Polito <[email protected]>
06274da
to
0da80b2
Compare
@mattpolito I didn't see this at the time. It looks like you were adding a plugin manager for tmux ?? sounds awesome!! Do you still care about this? |
It’s probably out of date but yes I do still care about this.
I have to figure out a way for it to be installed with dotmatrix
…On Tue, Jun 4, 2019 at 6:08 PM Chris Erin ***@***.***> wrote:
@mattpolito <https://github.com/mattpolito> I didn't see this at the
time. It looks like you were adding a plugin manager for tmux ?? sounds
awesome!! Do you still care about this?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#75?email_source=notifications&email_token=AAAAQYNHPHSJRAJDF5O7WBTPY3RVTA5CNFSM4ETJ4L72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODW6ANHA#issuecomment-498861724>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAAAQYOLXTEKER5FDNKGTXLPY3RVTANCNFSM4ETJ4L7Q>
.
|
We gain similar functionality from these plugins that are more community driven. This feels like a great base.
I started the base by commenting out all tmux config and removing each configuration as it was replaced by one of the following plugins
Then uncommented anything specific to dotmatrix... what is left commented are configurations I personally don't use and will need some feedback to determine if they are still necessary.
#71