From 2fc279dc776900a21794cd05dbd29dd95c2bfc49 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Sat, 17 Dec 2022 06:47:57 +0000 Subject: [PATCH] add column name to the tool tip --- R/session/vsc.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/session/vsc.R b/R/session/vsc.R index 6258c304b..0b881dc4d 100644 --- a/R/session/vsc.R +++ b/R/session/vsc.R @@ -326,7 +326,8 @@ if (show_view) { get_column_def <- function(name, field, value) { filter <- TRUE tooltip <- sprintf( - "class: [%s], type: %s", + "%s, class: [%s], type: %s", + name, toString(class(value)), typeof(value) )