Sami Kalliomäki
Sami Kalliomäki
The use case I have is: ```bazel flatten([ select({ ":%s_enabled" % feature: ["//some/path/%s:deps" % feature], "//conditions:default": [], }) for feature in ALL_FEATURES ]) ``` IMO that is a lot clearer...
I want to allow passing in a command line argument to allow selecting which features to include. Because the number of "features" is large (around 100 in my case) and...
Actually the list comprehension implementation does not work with selects. Updated implementation.
For me, I had to check "Free Trial Account" in the launcher settings.
Considering this makes a lot tests fail - I suspect this will not be able to merged in the current iteration. I think the issue is that I don't really...
Here's the log with event debug enabled. ``` Connecting _start_newobjfile Connecting _start_exit Connecting _start_stop Connecting _reset_objfiles Connecting root Connecting sysroot Connecting update_last Connecting update_last Connecting update Connecting clear Connecting is_executable...
I tried with this test program ``` #include int main() { system("/bin/cat test.c"); return 0; } ``` Issue does not reproduce if running manually by calling `gdb -ex run ./test`....
Additionally, it does not seem the issue is present if not using `gdb.debug` but instead `gdb.attach`. In this case it is necessary to add scanf to the test program so...
I believe the problem is the path is not updated set when it read: https://github.com/nvim-neo-tree/neo-tree.nvim/blob/230ff118613fa07138ba579b89d13ec2201530b9/lua/neo-tree/command/init.lua#L210 The path is only updated later in the `do_show_or_focus` method.
I find I get decent behavior from this workaround ```lua -- Copyright 2023 Google LLC. -- SPDX-License-Identifier: Apache-2.0 function open_tree(args) local manager = require("neo-tree.sources.manager") local reveal_file = manager.get_path_to_reveal() if args.dir...