evbo
evbo
@blackbeam I know it's not this repo's job to document mysql, but your above example is so helpful and I too was confused about how to mix prepared statements with...
consolidating David's workaround for this issue here from slack: https://discord.com/channels/1026214085173461072/1033754296224841768/1409068641139429466 ```python def action_switch_tab(self, tab_id: str) -> None: tabbed_content = self.query_one(TabbedContent) tabbed_content.query_one(Tabs).focus() tabbed_content.active = tab_id ```
here's another one that won't re-expand after any line change; you must manually "restart" rust-analyzer every time to get rid of red squiggly highlighting: ```rust macro_rules! make_types { ( $l:ident,...
in VS Code there is no way to select all unused? Removing all unused for a single line saves a well-caffeinated developer maybe hundredths of a second, removing all unused...
@lnicola thanks and the only reason I don't currently do this is for some reason it also can remove more than what is unused (underlined by the yellow squiggly): https://github.com/rust-lang/rust-analyzer/issues/18941
@vijayleo31 I don't see how your comment is relevant to this issue.
Also great if `data` can be included as then we can readily plugin a working example into Rick's tool: https://rh-web-bucket.s3.amazonaws.com/index.html#
@dev-embedthis you're right, Rick's tool is just a feather in the wind. However, it's the only tool currently available, which is pretty amazing. I tried accessing deepsense's tool, but it...
@dev-embedthis it is now officially maintained! https://github.com/aws-samples/amazon-dynamodb-labs/issues/125#issuecomment-2660091993
@markus-bauer it is a function that sets `delimiter_chars` to match filesystem paths (depending on os): https://docs.rs/nucleo-matcher/0.3.1/src/nucleo_matcher/config.rs.html#49 Could we make all fields public? For instance, only `_` is a legal delimiter...