Isaiah Odhner
Isaiah Odhner
This UI seems very nice, but I can barely type with this. I have to really peck at the keys quickly. And once I had typed something and tried to...
When you edit `package.json`, it should trigger a reload of the whole app. (Maybe optionally.) Previously it closed and reopened the window, but that stopped working, probably at `[email protected]`. With...
I was able to work around the lack of `copyFromChannel`/`copyToChannel` by using `getChannelData` and `Float32Array::slice` and `AudioBuffer.fromArray` when trying to slice an AudioBuffer: ```coffee sliceAudioBuffer = (audioBuffer, startOffset, endOffset, audioContext)->...
[`AudioBufferSourceNode.start()`](https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/start) fails silently... literally. > The most simple example just starts the audio buffer playing from the beginning — you don't need to specify any parameters in this case: >...
``` throw err; ^ [object Object] ``` You should always use actual `Error` objects.
https://tabs.ultimate-guitar.com/s/sweet/ballroom_blitz_tab.htm Because of the dash in the line above this section: ``` [Pre-Chorus] e|------------------------------------------------------| B|------------------------------------------------------| G|---------------------------------------5--------------| D|------------7--------------------------5--------------| A|------------7--------------------------3--------------| E|------------5-----------------------------------------| 1.It's like lightning...everybody was fighting 2.It's electric...so frightfully hectic ``` It...
It would be nice to be able to select dropdown items with the mouse. Currently this does nothing.
I want to remove the spacing between the `left_meta` column's content and the `main` column:  (It's also distracting having the columns resize as you type, and...
If the terminal is small enough that the max number of items doesn't fit on screen, the bottom of the dropdown is cut off, making the the bottom of the...
https://github.com/darrenburns/textual-autocomplete/blob/e289c56fadb5e5b024693f0214fc22a17c5c9c02/examples/custom_meta.py#L79-L80 This should be: ```py # Favour items that start with the Input value, pull them to the top ordered = sorted(matches, key=lambda v: v.main.plain.lower().startswith(input_state.value.lower()), reverse=True) ``` or: ```py #...