From: Eshel Yaron Date: Tue, 6 Aug 2024 05:31:45 +0000 (+0200) Subject: ; (kubed-display-resource-jump-to-list): Simplify. X-Git-Tag: v0.3.1~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2b54fa59ccdf8c343ece881f5aaae17e12746ab6;p=kubed.git ; (kubed-display-resource-jump-to-list): Simplify. --- diff --git a/kubed.el b/kubed.el index efe9885..953e757 100644 --- a/kubed.el +++ b/kubed.el @@ -283,20 +283,9 @@ the namespace of the resource, or nil if TYPE is not namespaced.") "Jump to line in resources list that corresponds to the displayed resource." (interactive) (seq-let (type name context namespace) kubed-display-resource-info - (let* ((list-fn (intern (concat "kubed-list-" type))) - (pos nil)) - (if (equal context (kubed-current-context)) - (if namespace - (cond - ((equal namespace (kubed-current-namespace)) - (funcall list-fn context namespace) - (kubed-list-go-to-line name)) - (t (user-error "Resource not in current namespace"))) - ;; Non-namespaced. - (funcall list-fn context) - (kubed-list-go-to-line name)) - (user-error "Resource not in current context")) - (when pos (goto-char pos))))) + (apply (intern (concat "kubed-list-" type)) context + (when namespace (list namespace))) + (kubed-list-go-to-line name))) (defun kubed-display-resource-p (_symbol buffer) "Return non-nil if `kubed-display-resource-mode' is enabled in BUFFER.