Rufus Wong

Results 14 issues of Rufus Wong

**What this PR does / why we need it**: Search limited to within the line is a commonly used feature in easymotion **Which issue(s) this PR fixes** https://github.com/VSCodeVim/Vim/issues/4788 **Special notes...

After waking from sleep and logging in, the title bar is hidden but the shadow of the title bar is still there (see image). Also, the window size is offset...

bug

After waking from sleep and logging in, the title bar is hidden but the shadow of the title bar is still there (see image). Also, the window size is offset...

**Is your feature request related to a problem? Please describe.** This is a follow up for [this question on StackOverflow](https://stackoverflow.com/questions/73271332/how-to-create-a-plugin-that-adds-a-custom-keyboard-shortcut). In order to create a plugin that adds a custom...

enhancement

**Does the feature exist in the most recent commit?** No **Why do we need this feature?** When a test has multiple `EXPECT_CALL`s on the same function, it becomes difficult to...

enhancement

I managed to narrow down the crashing line to [`spec_version = mynteye->GetDescriptors()->spec_version;`](https://github.com/slightech/MYNT-EYE-D-SDK/blob/master/wrappers/ros/src/mynteye_wrapper_d/src/mynteye_wrapper_nodelet.cc#L295) Adding some debugging output ``` ROS_INFO("mynteye->GetDescriptors() = %p", mynteye->GetDescriptors().get()); ``` gives ``` mynteye->GetDescriptors() = (nil) ``` Note `./samples/_output/bin/get_depth`...

### Description This avoids hiding the (likely) bug where an incorrect state name is given Replaces https://github.com/ros-planning/moveit2/pull/1579 ### Checklist - [ ] **Required by CI**: Code is auto formatted using...

## Desired behavior In Gazebo Classic + ROS1, there was the ability to use [`spawn_model`](https://github.com/ros-simulation/gazebo_ros_pkgs/blob/noetic-devel/gazebo_ros/scripts/spawn_model#L78) with `-J` to specify the joint values of the spawned model, albeit some [never resolved...

enhancement

Since `actionlib` is frequently used as part of a larger system, it would be nice if commonly used classes, e.g. `SimpleActionClient`, `SimpleActionServer` implemented an interface so that they can be...

Tested with ROS Melodic The minimal example that reproduces the issue (modified from [this example](https://docs.ros.org/groovy/api/actionlib/html/simple__client__wait__test_8cpp_source.html)) is as follows #include #include #include #include using namespace actionlib; std::unique_ptr client; TEST(SimpleClient, easy_wait_test) {...