We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68e958e commit 308e34fCopy full SHA for 308e34f
crates/pgt_hover/src/lib.rs
@@ -25,16 +25,12 @@ pub struct OnHoverParams<'a> {
25
position = params.position.to_string()
26
))]
27
pub fn on_hover(params: OnHoverParams) -> Vec<String> {
28
- println!("on hover!");
29
-
30
let ctx = pgt_treesitter::context::TreesitterContext::new(TreeSitterContextParams {
31
position: params.position,
32
text: params.stmt_sql,
33
tree: params.ts_tree,
34
});
35
36
- println!("ctx {:#?}", ctx);
37
38
if let Some(hovered_node) = HoveredNode::get(&ctx) {
39
let items: Vec<Hoverable> = match hovered_node {
40
HoveredNode::Table(node_identification) => match node_identification {
0 commit comments