Update tmux.conf so it conforms to tmux3 & 2 style#31
Open
ldhieu wants to merge 1 commit intosamoshkin:masterfrom
Open
Update tmux.conf so it conforms to tmux3 & 2 style#31ldhieu wants to merge 1 commit intosamoshkin:masterfrom
ldhieu wants to merge 1 commit intosamoshkin:masterfrom
Conversation
The new format for tmux3 has listed two incompatible changes as follow ([source](https://github.com/tmux/tmux/blob/master/CHANGES)) >INCOMPATIBLE: tmux's configuration parsing has changed to use yacc(1). There is one incompatible change: a \ on its own must be escaped or quoted as either \\ or '\' (the latter works on older tmux versions). >INCOMPATIBLE: Add a new {} syntax to the configuration file. This is a string similar to single quotes but also includes newlines and allows commands that take other commands as string arguments to be expressed more clearly and without additional escaping. So now ``{``, ``}`` and ``\`` have to be escaped to ``'{'``, ``'}'`` and ``'\'`` (to maintain compatibility with tmux2)
Open
|
The color background of the tab pane title has some issue, after making these changes on tmxu 3.0a version |
RafiSayag
approved these changes
Apr 12, 2021
RafiSayag
left a comment
There was a problem hiding this comment.
Reached the same fix myself (except for maybe aligning the comment offset for the unbind commands :) )
Tested and worked for me on version 2.8 and 3.0a
Thanks!
hughplay
added a commit
to hughplay/tmux-config
that referenced
this pull request
Aug 31, 2021
YuLeven
approved these changes
Dec 7, 2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The new format for tmux3 has listed two incompatible changes as follow (source)
So now
{,}and\have to be escaped to'{','}'and'\'(to maintain compatibility with tmux2)