forthrin
forthrin
### Expected behavior of the wanted feature The infamous barrier of including log files in issues seems the implicit exposure of personal information (assumed limited to file paths ATOW), which...
### System Information ```text System Version: macOS 26.0.1 (25A362) Model Identifier: MacBookAir10,1 mpv 2025-10-29 454d9eb ffmpeg 2025-10-27 00c23bafb ``` ### Reproduction Steps 1. Wear AirPods 2. Play directory of mp3s...
### Current behavior (mpv 0.35 Homebrew bottle) When running mpv with very long URLs (~1000 characters), eg. `$ mpv VIDEO --audio-file=AUDIO` 1. The OSD media title (lower left corner) seems...
### System Information ```text mpv 2025-10-29 454d9eb ffmpeg 2025-10-22 82c495fd1 System Version: macOS 26.0.1 (25A362) Model Identifier: MacBookAir10,1 ``` ### Reproduction Steps ```bash $ cp *.woff *.woff2 ~/Library/Fonts/ $ printf...
## Steps to reproduce the problem ```ruby 4.times do |bear| next puts 'Papa' if bear == 1 next puts 'Mama' if bear == 2 # next puts 'Little' if bear...
## Steps to reproduce the problem We want nil from a set of tests or exceptions to fall back to a default value (given some extra criteria). ```ruby def foo...
## Steps to reproduce the problem ```ruby def LEIA(bar) puts bar end # Use snake_case for method names. [Naming/MethodName] def LUKE(bar) # rucocop:disable Naming/MethodName puts bar end # Naming/MethodName: Use...
## Is your feature request related to a problem? Please describe. ```ruby def foo prev = nil [1, 2, 3].each do puts it prev = it end end foo ```...
## Steps to reproduce the problem ```ruby hash = { f: 1, g: 9, t:8, h: 4 } want = %i[h f t] hash.select { |key, _| want.include?(key) }.then {...
## Steps to reproduce the problem ```ruby 123 .then { 456 } .then { 789 } # Comment the last line (`M-; / comment-dwin` in Emacs) 123 .then { 456...