Skip to content

Commit 308e34f

Browse files
ok ok
1 parent 68e958e commit 308e34f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

crates/pgt_hover/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,12 @@ pub struct OnHoverParams<'a> {
2525
position = params.position.to_string()
2626
))]
2727
pub fn on_hover(params: OnHoverParams) -> Vec<String> {
28-
println!("on hover!");
29-
3028
let ctx = pgt_treesitter::context::TreesitterContext::new(TreeSitterContextParams {
3129
position: params.position,
3230
text: params.stmt_sql,
3331
tree: params.ts_tree,
3432
});
3533

36-
println!("ctx {:#?}", ctx);
37-
3834
if let Some(hovered_node) = HoveredNode::get(&ctx) {
3935
let items: Vec<Hoverable> = match hovered_node {
4036
HoveredNode::Table(node_identification) => match node_identification {

0 commit comments

Comments
 (0)