Fix parameter name: consistency

I want to use org-session as parameter when it expects the org-session
as typed in to an org document. The terms 'session', 'window', and
'target' should remain reserved for tmux sessions, windows, and
targets respectively.
hello-test
Allard Hendriksen 2018-07-16 12:02:16 +02:00
parent 9b9c578c95
commit 0b09770835
1 changed files with 3 additions and 2 deletions

View File

@ -200,10 +200,11 @@ If no window is specified, use first window."
(target-window (if window (concat "=" window) "^")))
(concat target-session ":" target-window)))
(defun org-babel-tmux-session-alive-p (session)
(defun org-babel-tmux-session-alive-p (org-session)
"Check if SESSION exists by parsing output of \"tmux ls\"."
(let* ((tmux-ls (shell-command-to-string "tmux ls -F '#S'"))
(tmux-session (org-babel-tmux-session session)))
(tmux-session (org-babel-tmux-session org-session)))
(car
(seq-filter (lambda (x) (string-equal tmux-session x))
(split-string tmux-ls "\n")))))