Koichi Murase

Results 1368 comments of Koichi Murase

Thank you for your quick responses. So, the error seems to be produced inside `ble/complete/mandb/.generate-cache-from-man` for sure. - **Q7c**: Could you try this: [`core-complete-v4.tar.gz`](https://github.com/user-attachments/files/17448586/core-complete-v4.tar.gz)? This time, the file `~/blesh-debug-mandb-lsof.tar.gz` will...

- **Q8**: What is the result of the following command? ```bash $ /usr/bin/awk -W version || /usr/bin/awk --version ```

- **Q8a**: How about this? ```bash $ path=/usr/bin/awk $ ble/util/assign version '"$path" -W version || "$path" --version' 2>/dev/null

Strange... - **Q8b**: How about these? ```bash $ { /usr/bin/awk -W version || /usr/bin/awk --version; } 2>/dev/null /dev/null $ /usr/bin/awk --version >/dev/null ```

Thank you for the results. Ah, OK. `/usr/bin/awk -W version /dev/null

> > /usr/bin/awk -W version > Exactly, kind of weird, its printing this error message, that seems to be more of a warning, as its not exiting with a non-0...

According to [the search in the source code](https://github.com/search?q=repo%3Aohmybash%2Foh-my-bash%20%2FDISABLE_AUTO_TITLE%2F&type=code), it doesn't seem to be implemented in the first place.

Why doesn't this list up the changes by #866? **edit**: The reason shouldn't be because #866 is merged into the master by a merge commit since 2.16.0 correctly lists the...

This typically happens when the character width schemes assumed by Bash and the terminal differ. In particular, it is likely that emojis or ambiguous-width characters are related. Which terminal do...

Then, it might be on Bash's side. Bash uses Readline for line editing, and I think Readline uses the system's wcwidth, which is affected by the current locale. What is...