-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add helpers to identify line types in the saved session files
- Loading branch information
1 parent
a4f046c
commit b104f0e
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# ------------------------------------------------------------------------------ | ||
# When dumping windows and panes, the line type is prepended to each line | ||
# These functions help identify the type of a line | ||
|
||
function __tsm::helpers::is_line_type() { | ||
local line_type="$1" line="$2" | ||
[[ "$line" =~ "^$line_type" ]] | ||
} | ||
|
||
function __tsm::helpers::is_line_type::pane() { | ||
__tsm::helpers::is_line_type "pane" "$1" | ||
} | ||
|
||
function __tsm::helpers::is_line_type::window() { | ||
__tsm::helpers::is_line_type "window" "$1" | ||
} | ||
|
||
# ------------------------------------------------------------------------------ |